├── .gitignore ├── Makefile ├── README.md ├── audio_core ├── algorithm │ ├── filter.cpp │ ├── filter.h │ ├── interpolate.cpp │ └── interpolate.h ├── audio_out.cpp ├── audio_out.h ├── audio_renderer.cpp ├── audio_renderer.h ├── behavior_info.cpp ├── behavior_info.h ├── buffer.h ├── codec.cpp ├── codec.h ├── command_generator.cpp ├── command_generator.h ├── common.h ├── cubeb_sink.cpp ├── cubeb_sink.h ├── delay_line.cpp ├── delay_line.h ├── effect_context.cpp ├── effect_context.h ├── info_updater.cpp ├── info_updater.h ├── memory_pool.cpp ├── memory_pool.h ├── mix_context.cpp ├── mix_context.h ├── null_sink.h ├── sdl2_sink.cpp ├── sdl2_sink.h ├── sink.h ├── sink_context.cpp ├── sink_context.h ├── sink_details.cpp ├── sink_details.h ├── sink_stream.h ├── splitter_context.cpp ├── splitter_context.h ├── stream.cpp ├── stream.h ├── time_stretch.cpp ├── time_stretch.h ├── voice_context.cpp └── voice_context.h ├── common ├── algorithm.h ├── alignment.h ├── assert.cpp ├── assert.h ├── bit_cast.h ├── bit_field.h ├── bit_util.h ├── cityhash.cpp ├── cityhash.h ├── common_funcs.h ├── common_types.h ├── concepts.h ├── div_ceil.h ├── dynamic_library.cpp ├── dynamic_library.h ├── error.cpp ├── error.h ├── fs │ ├── file.cpp │ ├── file.h │ ├── fs.cpp │ ├── fs.h │ ├── fs_paths.h │ ├── fs_types.h │ ├── fs_util.cpp │ ├── fs_util.h │ ├── path_util.cpp │ └── path_util.h ├── hash.h ├── hex_util.cpp ├── hex_util.h ├── literals.h ├── logging │ ├── backend.cpp │ ├── backend.h │ ├── filter.cpp │ ├── filter.h │ ├── log.h │ ├── log_entry.h │ ├── text_formatter.cpp │ ├── text_formatter.h │ └── types.h ├── lru_cache.h ├── lz4_compression.cpp ├── lz4_compression.h ├── math_util.h ├── microprofile.cpp ├── microprofile.h ├── param_package.cpp ├── param_package.h ├── point.h ├── quaternion.h ├── ring_buffer.h ├── scm_rev.h ├── scope_exit.h ├── settings.cpp ├── settings.h ├── settings_input.cpp ├── settings_input.h ├── spin_lock.cpp ├── spin_lock.h ├── stream.cpp ├── stream.h ├── string_util.cpp ├── string_util.h ├── swap.h ├── telemetry.cpp ├── telemetry.h ├── thread.cpp ├── thread.h ├── thread_worker.h ├── threadsafe_queue.h ├── time_zone.cpp ├── time_zone.h ├── unique_function.h ├── uuid.cpp ├── uuid.h ├── vector_math.h ├── zstd_compression.cpp └── zstd_compression.h ├── compat └── video_core │ ├── bootmanager.cpp │ ├── bootmanager.h │ ├── buffer_cache │ ├── buffer_block.h │ ├── buffer_cache.h │ └── map_interval.h │ ├── cdma_pusher.cpp │ ├── cdma_pusher.h │ ├── command_classes │ ├── codecs │ │ ├── codec.cpp │ │ ├── codec.h │ │ ├── h264.cpp │ │ ├── h264.h │ │ ├── vp9.cpp │ │ ├── vp9.h │ │ └── vp9_types.h │ ├── host1x.cpp │ ├── host1x.h │ ├── nvdec.cpp │ ├── nvdec.h │ ├── nvdec_common.h │ ├── sync_manager.cpp │ ├── sync_manager.h │ ├── vic.cpp │ └── vic.h │ ├── dirty_flags.cpp │ ├── dirty_flags.h │ ├── dma_pusher.cpp │ ├── dma_pusher.h │ ├── engines │ ├── const_buffer_engine_interface.h │ ├── const_buffer_info.h │ ├── engine_interface.h │ ├── engine_upload.cpp │ ├── engine_upload.h │ ├── fermi_2d.cpp │ ├── fermi_2d.h │ ├── kepler_compute.cpp │ ├── kepler_compute.h │ ├── kepler_memory.cpp │ ├── kepler_memory.h │ ├── maxwell_3d.cpp │ ├── maxwell_3d.h │ ├── maxwell_dma.cpp │ ├── maxwell_dma.h │ ├── shader_bytecode.h │ ├── shader_header.h │ └── shader_type.h │ ├── gpu.cpp │ ├── gpu.h │ ├── gpu_thread.cpp │ ├── gpu_thread.h │ ├── guest_driver.cpp │ ├── guest_driver.h │ ├── macro_interpreter.cpp │ ├── macro_interpreter.h │ ├── memory_manager.cpp │ ├── memory_manager.h │ ├── morton.cpp │ ├── morton.h │ ├── query_cache.h │ ├── rasterizer_accelerated.cpp │ ├── rasterizer_accelerated.h │ ├── rasterizer_cache.cpp │ ├── rasterizer_cache.h │ ├── rasterizer_interface.h │ ├── renderer_base.cpp │ ├── renderer_base.h │ ├── renderer_opengl │ ├── gl_buffer_cache.cpp │ ├── gl_buffer_cache.h │ ├── gl_device.cpp │ ├── gl_device.h │ ├── gl_framebuffer_cache.cpp │ ├── gl_framebuffer_cache.h │ ├── gl_query_cache.cpp │ ├── gl_query_cache.h │ ├── gl_rasterizer.cpp │ ├── gl_rasterizer.h │ ├── gl_resource_manager.cpp │ ├── gl_resource_manager.h │ ├── gl_sampler_cache.cpp │ ├── gl_sampler_cache.h │ ├── gl_shader_cache.cpp │ ├── gl_shader_cache.h │ ├── gl_shader_decompiler.cpp │ ├── gl_shader_decompiler.h │ ├── gl_shader_disk_cache.cpp │ ├── gl_shader_disk_cache.h │ ├── gl_shader_manager.cpp │ ├── gl_shader_manager.h │ ├── gl_shader_util.cpp │ ├── gl_shader_util.h │ ├── gl_state_tracker.cpp │ ├── gl_state_tracker.h │ ├── gl_stream_buffer.cpp │ ├── gl_stream_buffer.h │ ├── gl_texture_cache.cpp │ ├── gl_texture_cache.h │ ├── maxwell_to_gl.h │ ├── renderer_opengl.cpp │ ├── renderer_opengl.h │ ├── utils.cpp │ └── utils.h │ ├── sampler_cache.cpp │ ├── sampler_cache.h │ ├── shader │ ├── ast.cpp │ ├── ast.h │ ├── compiler_settings.cpp │ ├── compiler_settings.h │ ├── control_flow.cpp │ ├── control_flow.h │ ├── decode.cpp │ ├── decode │ │ ├── arithmetic.cpp │ │ ├── arithmetic_half.cpp │ │ ├── arithmetic_half_immediate.cpp │ │ ├── arithmetic_immediate.cpp │ │ ├── arithmetic_integer.cpp │ │ ├── arithmetic_integer_immediate.cpp │ │ ├── bfe.cpp │ │ ├── bfi.cpp │ │ ├── conversion.cpp │ │ ├── ffma.cpp │ │ ├── float_set.cpp │ │ ├── float_set_predicate.cpp │ │ ├── half_set.cpp │ │ ├── half_set_predicate.cpp │ │ ├── hfma2.cpp │ │ ├── image.cpp │ │ ├── integer_set.cpp │ │ ├── integer_set_predicate.cpp │ │ ├── memory.cpp │ │ ├── other.cpp │ │ ├── predicate_set_predicate.cpp │ │ ├── predicate_set_register.cpp │ │ ├── register_set_predicate.cpp │ │ ├── shift.cpp │ │ ├── texture.cpp │ │ ├── video.cpp │ │ ├── warp.cpp │ │ └── xmad.cpp │ ├── expr.cpp │ ├── expr.h │ ├── node.h │ ├── node_helper.cpp │ ├── node_helper.h │ ├── registry.cpp │ ├── registry.h │ ├── shader_ir.cpp │ ├── shader_ir.h │ ├── track.cpp │ ├── transform_feedback.cpp │ └── transform_feedback.h │ ├── surface.cpp │ ├── surface.h │ ├── texture_cache │ ├── copy_params.h │ ├── format_lookup_table.cpp │ ├── format_lookup_table.h │ ├── surface_base.cpp │ ├── surface_base.h │ ├── surface_params.cpp │ ├── surface_params.h │ ├── surface_view.cpp │ ├── surface_view.h │ └── texture_cache.h │ ├── textures │ ├── astc.cpp │ ├── astc.h │ ├── convert.cpp │ ├── convert.h │ ├── decoders.cpp │ ├── decoders.h │ └── texture.h │ ├── video_core.cpp │ └── video_core.h ├── configuration ├── config.cpp └── config.h ├── core ├── constants.cpp ├── constants.h ├── core.h ├── crypto │ ├── aes_util.cpp │ ├── aes_util.h │ ├── ctr_encryption_layer.cpp │ ├── ctr_encryption_layer.h │ ├── encryption_layer.cpp │ ├── encryption_layer.h │ ├── key_manager.cpp │ ├── key_manager.h │ ├── partition_data_manager.cpp │ ├── partition_data_manager.h │ ├── xts_encryption_layer.cpp │ └── xts_encryption_layer.h ├── file_sys │ ├── bis_factory.cpp │ ├── bis_factory.h │ ├── card_image.cpp │ ├── card_image.h │ ├── common_funcs.h │ ├── content_archive.cpp │ ├── content_archive.h │ ├── control_metadata.cpp │ ├── control_metadata.h │ ├── directory.h │ ├── errors.h │ ├── fsmitm_romfsbuild.cpp │ ├── fsmitm_romfsbuild.h │ ├── ips_layer.cpp │ ├── ips_layer.h │ ├── kernel_executable.cpp │ ├── kernel_executable.h │ ├── mode.h │ ├── nca_metadata.cpp │ ├── nca_metadata.h │ ├── nca_patch.cpp │ ├── nca_patch.h │ ├── partition_filesystem.cpp │ ├── partition_filesystem.h │ ├── patch_manager.cpp │ ├── patch_manager.h │ ├── program_metadata.cpp │ ├── program_metadata.h │ ├── registered_cache.cpp │ ├── registered_cache.h │ ├── romfs.cpp │ ├── romfs.h │ ├── romfs_factory.cpp │ ├── romfs_factory.h │ ├── savedata_factory.cpp │ ├── savedata_factory.h │ ├── sdmc_factory.cpp │ ├── sdmc_factory.h │ ├── submission_package.cpp │ ├── submission_package.h │ ├── system_archive │ │ ├── data │ │ │ ├── font_chinese_simplified.cpp │ │ │ ├── font_chinese_simplified.h │ │ │ ├── font_chinese_traditional.cpp │ │ │ ├── font_chinese_traditional.h │ │ │ ├── font_extended_chinese_simplified.cpp │ │ │ ├── font_extended_chinese_simplified.h │ │ │ ├── font_korean.cpp │ │ │ ├── font_korean.h │ │ │ ├── font_nintendo_extended.cpp │ │ │ ├── font_nintendo_extended.h │ │ │ ├── font_standard.cpp │ │ │ └── font_standard.h │ │ ├── mii_model.cpp │ │ ├── mii_model.h │ │ ├── ng_word.cpp │ │ ├── ng_word.h │ │ ├── shared_font.cpp │ │ ├── shared_font.h │ │ ├── system_archive.cpp │ │ ├── system_archive.h │ │ ├── system_version.cpp │ │ ├── system_version.h │ │ ├── time_zone_binary.cpp │ │ └── time_zone_binary.h │ ├── vfs.cpp │ ├── vfs.h │ ├── vfs_concat.cpp │ ├── vfs_concat.h │ ├── vfs_layered.cpp │ ├── vfs_layered.h │ ├── vfs_offset.cpp │ ├── vfs_offset.h │ ├── vfs_real.cpp │ ├── vfs_real.h │ ├── vfs_static.h │ ├── vfs_types.h │ ├── vfs_vector.cpp │ ├── vfs_vector.h │ ├── xts_archive.cpp │ └── xts_archive.h ├── frontend │ ├── applets │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── general_frontend.cpp │ │ ├── general_frontend.h │ │ ├── profile_select.cpp │ │ ├── profile_select.h │ │ ├── software_keyboard.cpp │ │ ├── software_keyboard.h │ │ ├── web_browser.cpp │ │ └── web_browser.h │ ├── emu_window.cpp │ ├── emu_window.h │ ├── framebuffer_layout.cpp │ ├── framebuffer_layout.h │ └── input.h ├── hardware_interrupt_manager.cpp ├── hardware_interrupt_manager.h ├── hardware_properties.h ├── hle │ ├── api_version.h │ ├── ipc.h │ ├── ipc_helpers.h │ ├── kernel │ │ ├── code_set.h │ │ ├── hle_ipc.cpp │ │ ├── hle_ipc.h │ │ ├── k_thread.h │ │ ├── physical_memory.h │ │ ├── svc_common.h │ │ └── svc_results.h │ ├── lock.cpp │ ├── lock.h │ ├── result.h │ └── service │ │ ├── acc │ │ ├── acc.cpp │ │ ├── acc.h │ │ ├── acc_aa.cpp │ │ ├── acc_aa.h │ │ ├── acc_su.cpp │ │ ├── acc_su.h │ │ ├── acc_u0.cpp │ │ ├── acc_u0.h │ │ ├── acc_u1.cpp │ │ ├── acc_u1.h │ │ ├── async_context.cpp │ │ ├── async_context.h │ │ ├── errors.h │ │ ├── profile_manager.cpp │ │ └── profile_manager.h │ │ ├── am │ │ ├── am.cpp │ │ ├── am.h │ │ ├── applet_ae.cpp │ │ ├── applet_ae.h │ │ ├── applet_oe.cpp │ │ ├── applet_oe.h │ │ ├── applets │ │ │ ├── applet_controller.cpp │ │ │ ├── applet_controller.h │ │ │ ├── applet_error.cpp │ │ │ ├── applet_error.h │ │ │ ├── applet_general_backend.cpp │ │ │ ├── applet_general_backend.h │ │ │ ├── applet_profile_select.cpp │ │ │ ├── applet_profile_select.h │ │ │ ├── applet_software_keyboard.cpp │ │ │ ├── applet_software_keyboard.h │ │ │ ├── applet_software_keyboard_types.h │ │ │ ├── applet_web_browser.cpp │ │ │ ├── applet_web_browser.h │ │ │ ├── applet_web_browser_types.h │ │ │ ├── applets.cpp │ │ │ └── applets.h │ │ ├── idle.cpp │ │ ├── idle.h │ │ ├── omm.cpp │ │ ├── omm.h │ │ ├── spsm.cpp │ │ ├── spsm.h │ │ ├── tcap.cpp │ │ └── tcap.h │ │ ├── aoc │ │ ├── aoc_u.cpp │ │ └── aoc_u.h │ │ ├── apm │ │ ├── apm.cpp │ │ ├── apm.h │ │ ├── apm_controller.cpp │ │ ├── apm_controller.h │ │ ├── apm_interface.cpp │ │ └── apm_interface.h │ │ ├── audio │ │ ├── audctl.cpp │ │ ├── audctl.h │ │ ├── auddbg.cpp │ │ ├── auddbg.h │ │ ├── audin_a.cpp │ │ ├── audin_a.h │ │ ├── audin_u.cpp │ │ ├── audin_u.h │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── audout_a.cpp │ │ ├── audout_a.h │ │ ├── audout_u.cpp │ │ ├── audout_u.h │ │ ├── audrec_a.cpp │ │ ├── audrec_a.h │ │ ├── audrec_u.cpp │ │ ├── audrec_u.h │ │ ├── audren_a.cpp │ │ ├── audren_a.h │ │ ├── audren_u.cpp │ │ ├── audren_u.h │ │ ├── codecctl.cpp │ │ ├── codecctl.h │ │ ├── errors.h │ │ ├── hwopus.cpp │ │ └── hwopus.h │ │ ├── bcat │ │ ├── backend │ │ │ ├── backend.cpp │ │ │ └── backend.h │ │ ├── bcat.cpp │ │ ├── bcat.h │ │ ├── bcat_module.cpp │ │ └── bcat_module.h │ │ ├── bpc │ │ ├── bpc.cpp │ │ └── bpc.h │ │ ├── btdrv │ │ ├── btdrv.cpp │ │ └── btdrv.h │ │ ├── btm │ │ ├── btm.cpp │ │ └── btm.h │ │ ├── caps │ │ ├── caps.cpp │ │ ├── caps.h │ │ ├── caps_a.cpp │ │ ├── caps_a.h │ │ ├── caps_c.cpp │ │ ├── caps_c.h │ │ ├── caps_sc.cpp │ │ ├── caps_sc.h │ │ ├── caps_ss.cpp │ │ ├── caps_ss.h │ │ ├── caps_su.cpp │ │ ├── caps_su.h │ │ ├── caps_u.cpp │ │ └── caps_u.h │ │ ├── erpt │ │ ├── erpt.cpp │ │ └── erpt.h │ │ ├── es │ │ ├── es.cpp │ │ └── es.h │ │ ├── eupld │ │ ├── eupld.cpp │ │ └── eupld.h │ │ ├── fatal │ │ ├── fatal.cpp │ │ ├── fatal.h │ │ ├── fatal_p.cpp │ │ ├── fatal_p.h │ │ ├── fatal_u.cpp │ │ └── fatal_u.h │ │ ├── fgm │ │ ├── fgm.cpp │ │ └── fgm.h │ │ ├── filesystem │ │ ├── filesystem.cpp │ │ ├── filesystem.h │ │ ├── fsp_ldr.cpp │ │ ├── fsp_ldr.h │ │ ├── fsp_pr.cpp │ │ ├── fsp_pr.h │ │ ├── fsp_srv.cpp │ │ └── fsp_srv.h │ │ ├── friend │ │ ├── errors.h │ │ ├── friend.cpp │ │ ├── friend.h │ │ ├── friend_interface.cpp │ │ └── friend_interface.h │ │ ├── glue │ │ ├── arp.cpp │ │ ├── arp.h │ │ ├── bgtc.cpp │ │ ├── bgtc.h │ │ ├── ectx.cpp │ │ ├── ectx.h │ │ ├── errors.h │ │ ├── glue.cpp │ │ ├── glue.h │ │ ├── glue_manager.cpp │ │ └── glue_manager.h │ │ ├── grc │ │ ├── grc.cpp │ │ └── grc.h │ │ ├── hid │ │ ├── controllers │ │ │ ├── console_sixaxis.cpp │ │ │ ├── console_sixaxis.h │ │ │ ├── controller_base.cpp │ │ │ ├── controller_base.h │ │ │ ├── debug_pad.cpp │ │ │ ├── debug_pad.h │ │ │ ├── gesture.cpp │ │ │ ├── gesture.h │ │ │ ├── keyboard.cpp │ │ │ ├── keyboard.h │ │ │ ├── mouse.cpp │ │ │ ├── mouse.h │ │ │ ├── npad.cpp │ │ │ ├── npad.h │ │ │ ├── stubbed.cpp │ │ │ ├── stubbed.h │ │ │ ├── touchscreen.cpp │ │ │ ├── touchscreen.h │ │ │ ├── xpad.cpp │ │ │ └── xpad.h │ │ ├── errors.h │ │ ├── hid.cpp │ │ ├── hid.h │ │ ├── irs.cpp │ │ ├── irs.h │ │ ├── xcd.cpp │ │ └── xcd.h │ │ ├── kernel_helpers.cpp │ │ ├── kernel_helpers.h │ │ ├── lbl │ │ ├── lbl.cpp │ │ └── lbl.h │ │ ├── ldn │ │ ├── errors.h │ │ ├── ldn.cpp │ │ └── ldn.h │ │ ├── ldr │ │ ├── ldr.cpp │ │ └── ldr.h │ │ ├── lm │ │ ├── lm.cpp │ │ └── lm.h │ │ ├── mig │ │ ├── mig.cpp │ │ └── mig.h │ │ ├── mii │ │ ├── mii.cpp │ │ ├── mii.h │ │ ├── mii_manager.cpp │ │ ├── mii_manager.h │ │ ├── raw_data.cpp │ │ ├── raw_data.h │ │ └── types.h │ │ ├── mm │ │ ├── mm_u.cpp │ │ └── mm_u.h │ │ ├── ncm │ │ ├── ncm.cpp │ │ └── ncm.h │ │ ├── nfc │ │ ├── nfc.cpp │ │ └── nfc.h │ │ ├── nfp │ │ ├── nfp.cpp │ │ ├── nfp.h │ │ ├── nfp_user.cpp │ │ └── nfp_user.h │ │ ├── ngct │ │ ├── ngct.cpp │ │ └── ngct.h │ │ ├── nifm │ │ ├── nifm.cpp │ │ └── nifm.h │ │ ├── nim │ │ ├── nim.cpp │ │ └── nim.h │ │ ├── npns │ │ ├── npns.cpp │ │ └── npns.h │ │ ├── ns │ │ ├── errors.h │ │ ├── language.cpp │ │ ├── language.h │ │ ├── ns.cpp │ │ ├── ns.h │ │ ├── pl_u.cpp │ │ └── pl_u.h │ │ ├── nvdrv │ │ ├── devices │ │ │ ├── nvdevice.h │ │ │ ├── nvdisp_disp0.cpp │ │ │ ├── nvdisp_disp0.h │ │ │ ├── nvhost_as_gpu.cpp │ │ │ ├── nvhost_as_gpu.h │ │ │ ├── nvhost_ctrl.cpp │ │ │ ├── nvhost_ctrl.h │ │ │ ├── nvhost_ctrl_gpu.cpp │ │ │ ├── nvhost_ctrl_gpu.h │ │ │ ├── nvhost_gpu.cpp │ │ │ ├── nvhost_gpu.h │ │ │ ├── nvhost_nvdec.cpp │ │ │ ├── nvhost_nvdec.h │ │ │ ├── nvhost_nvdec_common.cpp │ │ │ ├── nvhost_nvdec_common.h │ │ │ ├── nvhost_nvjpg.cpp │ │ │ ├── nvhost_nvjpg.h │ │ │ ├── nvhost_vic.cpp │ │ │ ├── nvhost_vic.h │ │ │ ├── nvmap.cpp │ │ │ └── nvmap.h │ │ ├── nvdata.h │ │ ├── nvdrv.cpp │ │ ├── nvdrv.h │ │ ├── nvdrv_interface.cpp │ │ ├── nvdrv_interface.h │ │ ├── nvmemp.cpp │ │ ├── nvmemp.h │ │ ├── syncpoint_manager.cpp │ │ └── syncpoint_manager.h │ │ ├── nvflinger │ │ ├── buffer_queue.cpp │ │ ├── buffer_queue.h │ │ ├── nvflinger.cpp │ │ └── nvflinger.h │ │ ├── olsc │ │ ├── olsc.cpp │ │ └── olsc.h │ │ ├── pcie │ │ ├── pcie.cpp │ │ └── pcie.h │ │ ├── pctl │ │ ├── pctl.cpp │ │ ├── pctl.h │ │ ├── pctl_module.cpp │ │ └── pctl_module.h │ │ ├── pcv │ │ ├── pcv.cpp │ │ └── pcv.h │ │ ├── pm │ │ ├── pm.cpp │ │ └── pm.h │ │ ├── prepo │ │ ├── prepo.cpp │ │ └── prepo.h │ │ ├── psc │ │ ├── psc.cpp │ │ └── psc.h │ │ ├── ptm │ │ ├── psm.cpp │ │ └── psm.h │ │ ├── service.cpp │ │ ├── service.h │ │ ├── set │ │ ├── set.cpp │ │ ├── set.h │ │ ├── set_cal.cpp │ │ ├── set_cal.h │ │ ├── set_fd.cpp │ │ ├── set_fd.h │ │ ├── set_sys.cpp │ │ ├── set_sys.h │ │ ├── settings.cpp │ │ └── settings.h │ │ ├── sm │ │ ├── sm.cpp │ │ ├── sm.h │ │ ├── sm_controller.cpp │ │ └── sm_controller.h │ │ ├── sockets │ │ ├── bsd.cpp │ │ ├── bsd.h │ │ ├── ethc.cpp │ │ ├── ethc.h │ │ ├── nsd.cpp │ │ ├── nsd.h │ │ ├── sfdnsres.cpp │ │ ├── sfdnsres.h │ │ ├── sockets.cpp │ │ ├── sockets.h │ │ ├── sockets_translate.cpp │ │ └── sockets_translate.h │ │ ├── spl │ │ ├── csrng.cpp │ │ ├── csrng.h │ │ ├── spl.cpp │ │ ├── spl.h │ │ ├── spl_module.cpp │ │ ├── spl_module.h │ │ ├── spl_results.h │ │ └── spl_types.h │ │ ├── ssl │ │ ├── ssl.cpp │ │ └── ssl.h │ │ ├── time │ │ ├── clock_types.h │ │ ├── ephemeral_network_system_clock_context_writer.h │ │ ├── ephemeral_network_system_clock_core.h │ │ ├── errors.h │ │ ├── local_system_clock_context_writer.h │ │ ├── network_system_clock_context_writer.h │ │ ├── standard_local_system_clock_core.h │ │ ├── standard_network_system_clock_core.h │ │ ├── standard_steady_clock_core.cpp │ │ ├── standard_steady_clock_core.h │ │ ├── standard_user_system_clock_core.cpp │ │ ├── standard_user_system_clock_core.h │ │ ├── steady_clock_core.h │ │ ├── system_clock_context_update_callback.cpp │ │ ├── system_clock_context_update_callback.h │ │ ├── system_clock_core.cpp │ │ ├── system_clock_core.h │ │ ├── tick_based_steady_clock_core.cpp │ │ ├── tick_based_steady_clock_core.h │ │ ├── time.cpp │ │ ├── time.h │ │ ├── time_interface.cpp │ │ ├── time_interface.h │ │ ├── time_manager.cpp │ │ ├── time_manager.h │ │ ├── time_sharedmemory.cpp │ │ ├── time_sharedmemory.h │ │ ├── time_zone_content_manager.cpp │ │ ├── time_zone_content_manager.h │ │ ├── time_zone_manager.cpp │ │ ├── time_zone_manager.h │ │ ├── time_zone_service.cpp │ │ ├── time_zone_service.h │ │ └── time_zone_types.h │ │ ├── usb │ │ ├── usb.cpp │ │ └── usb.h │ │ ├── vi │ │ ├── display │ │ │ ├── vi_display.cpp │ │ │ └── vi_display.h │ │ ├── layer │ │ │ ├── vi_layer.cpp │ │ │ └── vi_layer.h │ │ ├── vi.cpp │ │ ├── vi.h │ │ ├── vi_m.cpp │ │ ├── vi_m.h │ │ ├── vi_s.cpp │ │ ├── vi_s.h │ │ ├── vi_u.cpp │ │ └── vi_u.h │ │ └── wlan │ │ ├── wlan.cpp │ │ └── wlan.h ├── loader │ ├── deconstructed_rom_directory.cpp │ ├── deconstructed_rom_directory.h │ ├── loader.cpp │ ├── loader.h │ ├── nca.cpp │ ├── nca.h │ ├── nro.cpp │ ├── nro.h │ ├── nso.cpp │ ├── nso.h │ ├── nsp.cpp │ └── nsp.h ├── memory.h ├── memory │ ├── cheat_engine.h │ ├── dmnt_cheat_types.h │ └── dmnt_cheat_vm.h ├── network │ ├── network.cpp │ ├── network.h │ ├── network_interface.cpp │ ├── network_interface.h │ └── sockets.h ├── perf_stats.cpp ├── perf_stats.h ├── reporter.cpp ├── reporter.h ├── telemetry_session.cpp └── telemetry_session.h ├── externals ├── SDL │ ├── .clang-format │ ├── .editorconfig │ ├── .github │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ ├── android.yml │ │ │ ├── emscripten.yml │ │ │ ├── ios.yml │ │ │ ├── main.yml │ │ │ ├── msvc.yml │ │ │ ├── ps2.yaml │ │ │ ├── psp.yaml │ │ │ ├── riscos.yml │ │ │ ├── vita.yaml │ │ │ ├── vmactions.yml │ │ │ └── watcom.yml │ ├── .gitignore │ ├── .wikiheaders-options │ ├── Android.mk │ ├── BUGS.txt │ ├── CMakeLists.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── Makefile.in │ ├── Makefile.minimal │ ├── Makefile.os2 │ ├── Makefile.pandora │ ├── Makefile.w32 │ ├── README-SDL.txt │ ├── README.md │ ├── SDL2.spec.in │ ├── SDL2Config.cmake.in │ ├── TODO.txt │ ├── VisualC-GDK │ │ ├── SDL.sln │ │ ├── SDL │ │ │ ├── SDL.vcxproj │ │ │ └── SDL.vcxproj.filters │ │ ├── SDLmain │ │ │ └── SDLmain.vcxproj │ │ ├── SDLtest │ │ │ └── SDLtest.vcxproj │ │ ├── clean.sh │ │ ├── logos │ │ │ ├── Logo100x100.png │ │ │ ├── Logo150x150.png │ │ │ ├── Logo44x44.png │ │ │ ├── Logo480x480.png │ │ │ └── SplashScreenImage.png │ │ └── tests │ │ │ ├── testgamecontroller │ │ │ ├── PackageLayout.xml │ │ │ ├── testgamecontroller.vcxproj │ │ │ ├── testgamecontroller.vcxproj.filters │ │ │ ├── wingdk │ │ │ │ └── MicrosoftGame.config │ │ │ ├── xboxone │ │ │ │ └── MicrosoftGame.config │ │ │ └── xboxseries │ │ │ │ └── MicrosoftGame.config │ │ │ ├── testgdk │ │ │ ├── PackageLayout.xml │ │ │ ├── src │ │ │ │ └── testgdk.cpp │ │ │ ├── testgdk.vcxproj │ │ │ ├── testgdk.vcxproj.filters │ │ │ ├── wingdk │ │ │ │ └── MicrosoftGame.config │ │ │ ├── xboxone │ │ │ │ └── MicrosoftGame.config │ │ │ └── xboxseries │ │ │ │ └── MicrosoftGame.config │ │ │ └── testsprite2 │ │ │ ├── PackageLayout.xml │ │ │ ├── testsprite2.vcxproj │ │ │ ├── testsprite2.vcxproj.filters │ │ │ ├── wingdk │ │ │ └── MicrosoftGame.config │ │ │ ├── xboxone │ │ │ └── MicrosoftGame.config │ │ │ └── xboxseries │ │ │ └── MicrosoftGame.config │ ├── VisualC-WinRT │ │ ├── SDL-UWP.sln │ │ ├── SDL-UWP.vcxproj │ │ └── SDL-UWP.vcxproj.filters │ ├── VisualC │ │ ├── SDL.sln │ │ ├── SDL │ │ │ ├── SDL.vcxproj │ │ │ └── SDL.vcxproj.filters │ │ ├── SDLmain │ │ │ └── SDLmain.vcxproj │ │ ├── SDLtest │ │ │ └── SDLtest.vcxproj │ │ ├── clean.sh │ │ ├── tests │ │ │ ├── checkkeys │ │ │ │ └── checkkeys.vcxproj │ │ │ ├── controllermap │ │ │ │ └── controllermap.vcxproj │ │ │ ├── loopwave │ │ │ │ └── loopwave.vcxproj │ │ │ ├── testatomic │ │ │ │ └── testatomic.vcxproj │ │ │ ├── testautomation │ │ │ │ └── testautomation.vcxproj │ │ │ ├── testdraw2 │ │ │ │ └── testdraw2.vcxproj │ │ │ ├── testfile │ │ │ │ └── testfile.vcxproj │ │ │ ├── testgamecontroller │ │ │ │ └── testgamecontroller.vcxproj │ │ │ ├── testgesture │ │ │ │ └── testgesture.vcxproj │ │ │ ├── testgl2 │ │ │ │ └── testgl2.vcxproj │ │ │ ├── testgles2 │ │ │ │ └── testgles2.vcxproj │ │ │ ├── testjoystick │ │ │ │ └── testjoystick.vcxproj │ │ │ ├── testoverlay2 │ │ │ │ └── testoverlay2.vcxproj │ │ │ ├── testplatform │ │ │ │ └── testplatform.vcxproj │ │ │ ├── testpower │ │ │ │ └── testpower.vcxproj │ │ │ ├── testrendertarget │ │ │ │ └── testrendertarget.vcxproj │ │ │ ├── testrumble │ │ │ │ └── testrumble.vcxproj │ │ │ ├── testscale │ │ │ │ └── testscale.vcxproj │ │ │ ├── testsensor │ │ │ │ └── testsensor.vcxproj │ │ │ ├── testshape │ │ │ │ └── testshape.vcxproj │ │ │ ├── testsprite2 │ │ │ │ └── testsprite2.vcxproj │ │ │ ├── testsurround │ │ │ │ └── testsurround.vcxproj │ │ │ ├── testvulkan │ │ │ │ └── testvulkan.vcxproj │ │ │ ├── testwm2 │ │ │ │ └── testwm2.vcxproj │ │ │ └── testyuv │ │ │ │ └── testyuv.vcxproj │ │ └── visualtest │ │ │ ├── unittest │ │ │ └── testquit │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ └── visualtest_VS2012.vcxproj │ ├── WhatsNew.txt │ ├── Xcode-iOS │ │ ├── Demos │ │ │ ├── Default.png │ │ │ ├── Demos.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Icon.png │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── bitmapfont │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ └── license.txt │ │ │ │ ├── drums │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ ├── icon.bmp │ │ │ │ ├── ship.bmp │ │ │ │ ├── space.bmp │ │ │ │ └── stroke.bmp │ │ │ ├── iOS Launch Screen.storyboard │ │ │ └── src │ │ │ │ ├── accelerometer.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── fireworks.c │ │ │ │ ├── happy.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── mixer.c │ │ │ │ ├── rectangles.c │ │ │ │ └── touch.c │ │ ├── SDLtest │ │ │ └── SDL2test.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── Test │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ └── project.pbxproj │ ├── Xcode │ │ ├── SDL │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── pkg-support │ │ │ │ ├── SDL.info │ │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ └── SDL_DS_Store │ │ │ │ └── sdl_logo.pdf │ │ ├── SDLTest │ │ │ ├── SDLTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TestDropFile-Info.plist │ │ └── XcodeDocSet │ │ │ └── Doxyfile │ ├── acinclude │ │ ├── ac_check_define.m4 │ │ ├── alsa.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_compute_relative_paths.m4 │ │ ├── ax_gcc_archflag.m4 │ │ ├── ax_gcc_x86_cpuid.m4 │ │ ├── ax_normalize_path.m4 │ │ ├── ax_recursive_eval.m4 │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pkg.m4 │ ├── android-project-ant │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build.properties │ │ ├── build.xml │ │ ├── default.properties │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── src │ │ │ │ ├── Android.mk │ │ │ │ └── Android_static.mk │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ ├── android-project │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ └── SDLControllerManager.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── autogen.sh │ ├── build-scripts │ │ ├── androidbuild.sh │ │ ├── androidbuildlibs.sh │ │ ├── checker-buildbot.sh │ │ ├── clang++-fat.sh │ │ ├── clang-fat.sh │ │ ├── codechecker-buildbot.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── emscripten-buildbot.sh │ │ ├── fnsince.pl │ │ ├── gen_audio_channel_conversion.c │ │ ├── gen_audio_resampler_filter.c │ │ ├── git-pre-push-hook.pl │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── mkinstalldirs │ │ ├── nacl-buildbot.sh │ │ ├── naclbuild.sh │ │ ├── raspberrypi-buildbot.sh │ │ ├── showrev.sh │ │ ├── strip_fPIC.sh │ │ ├── update-copyright.sh │ │ ├── updaterev.sh │ │ ├── wikiheaders.pl │ │ └── windows-buildbot-zipper.bat │ ├── cmake │ │ ├── macros.cmake │ │ ├── sdlchecks.cmake │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── jni │ │ │ └── Android.mk │ │ │ ├── main_cli.c │ │ │ ├── main_gui.c │ │ │ ├── test_pkgconfig.sh │ │ │ └── test_sdlconfig.sh │ ├── cmake_uninstall.cmake.in │ ├── configure │ ├── configure.ac │ ├── docs │ │ ├── CONTRIBUTING.md │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gdk.md │ │ ├── README-gesture.md │ │ ├── README-git.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-kmsbsd.md │ │ ├── README-linux.md │ │ ├── README-macos.md │ │ ├── README-nacl.md │ │ ├── README-ngage.md │ │ ├── README-os2.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-ps2.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-riscos.md │ │ ├── README-touch.md │ │ ├── README-versions.md │ │ ├── README-visualc.md │ │ ├── README-vita.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ ├── doxyfile │ │ └── release_checklist.md │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_emscripten.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_ngage.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_wingdk.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_xbox.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_revision.h.cmake │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── sdl2-config-version.cmake.in │ ├── sdl2-config.cmake.in │ ├── sdl2-config.in │ ├── sdl2.m4 │ ├── sdl2.pc.in │ ├── src │ │ ├── SDL.c │ │ ├── SDL_assert.c │ │ ├── SDL_assert_c.h │ │ ├── SDL_dataqueue.c │ │ ├── SDL_dataqueue.h │ │ ├── SDL_error.c │ │ ├── SDL_error_c.h │ │ ├── SDL_guid.c │ │ ├── SDL_hints.c │ │ ├── SDL_hints_c.h │ │ ├── SDL_internal.h │ │ ├── SDL_list.c │ │ ├── SDL_list.h │ │ ├── SDL_log.c │ │ ├── SDL_log_c.h │ │ ├── SDL_utils.c │ │ ├── SDL_utils_c.h │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.h │ │ │ ├── SDL_audio_channel_converters.h │ │ │ ├── SDL_audio_resampler_filter.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── aaudio │ │ │ │ ├── SDL_aaudio.c │ │ │ │ ├── SDL_aaudio.h │ │ │ │ └── SDL_aaudiofuncs.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ └── SDL_coreaudio.m │ │ │ ├── directsound │ │ │ │ ├── SDL_directsound.c │ │ │ │ └── SDL_directsound.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── haiku │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ └── SDL_haikuaudio.h │ │ │ ├── jack │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ └── SDL_jackaudio.h │ │ │ ├── nacl │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ └── SDL_naclaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── netbsd │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ └── SDL_netbsdaudio.h │ │ │ ├── openslES │ │ │ │ ├── SDL_openslES.c │ │ │ │ └── SDL_openslES.h │ │ │ ├── os2 │ │ │ │ ├── SDL_os2audio.c │ │ │ │ └── SDL_os2audio.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── pipewire │ │ │ │ ├── SDL_pipewire.c │ │ │ │ └── SDL_pipewire.h │ │ │ ├── ps2 │ │ │ │ ├── SDL_ps2audio.c │ │ │ │ └── SDL_ps2audio.h │ │ │ ├── psp │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ └── SDL_pspaudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sndio │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ └── SDL_sndioaudio.h │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── vita │ │ │ │ ├── SDL_vitaaudio.c │ │ │ │ └── SDL_vitaaudio.h │ │ │ ├── wasapi │ │ │ │ ├── SDL_wasapi.c │ │ │ │ ├── SDL_wasapi.h │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ └── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.c │ │ │ │ └── SDL_android.h │ │ │ ├── freebsd │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ ├── gdk │ │ │ │ ├── SDL_gdk.cpp │ │ │ │ └── SDL_gdk.h │ │ │ ├── linux │ │ │ │ ├── SDL_dbus.c │ │ │ │ ├── SDL_dbus.h │ │ │ │ ├── SDL_evdev.c │ │ │ │ ├── SDL_evdev.h │ │ │ │ ├── SDL_evdev_capabilities.c │ │ │ │ ├── SDL_evdev_capabilities.h │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ ├── SDL_fcitx.c │ │ │ │ ├── SDL_fcitx.h │ │ │ │ ├── SDL_ibus.c │ │ │ │ ├── SDL_ibus.h │ │ │ │ ├── SDL_ime.c │ │ │ │ ├── SDL_ime.h │ │ │ │ ├── SDL_threadprio.c │ │ │ │ ├── SDL_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── openbsd │ │ │ │ ├── SDL_wscons.h │ │ │ │ ├── SDL_wscons_kbd.c │ │ │ │ └── SDL_wscons_mouse.c │ │ │ ├── os2 │ │ │ │ ├── SDL_os2.c │ │ │ │ ├── SDL_os2.h │ │ │ │ ├── geniconv │ │ │ │ │ ├── geniconv.c │ │ │ │ │ ├── geniconv.h │ │ │ │ │ ├── iconv.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── os2cp.c │ │ │ │ │ ├── os2cp.h │ │ │ │ │ ├── os2iconv.c │ │ │ │ │ ├── sys2utf8.c │ │ │ │ │ └── test.c │ │ │ │ └── iconv2.lbc │ │ │ ├── unix │ │ │ │ ├── SDL_poll.c │ │ │ │ └── SDL_poll.h │ │ │ ├── windows │ │ │ │ ├── SDL_directx.h │ │ │ │ ├── SDL_hid.c │ │ │ │ ├── SDL_hid.h │ │ │ │ ├── SDL_immdevice.c │ │ │ │ ├── SDL_immdevice.h │ │ │ │ ├── SDL_windows.c │ │ │ │ ├── SDL_windows.h │ │ │ │ ├── SDL_xinput.c │ │ │ │ └── SDL_xinput.h │ │ │ └── winrt │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ └── SDL_winrtapp_xaml.h │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ ├── dynapi │ │ │ ├── SDL2.exports │ │ │ ├── SDL_dynapi.c │ │ │ ├── SDL_dynapi.h │ │ │ ├── SDL_dynapi_overrides.h │ │ │ ├── SDL_dynapi_procs.h │ │ │ └── gendynapi.pl │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_displayevents.c │ │ │ ├── SDL_displayevents_c.h │ │ │ ├── SDL_dropevents.c │ │ │ ├── SDL_dropevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── imKStoUCS.c │ │ │ ├── imKStoUCS.h │ │ │ ├── scancodes_ascii.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ ├── filesystem │ │ │ ├── android │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── nacl │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── os2 │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── ps2 │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── psp │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── riscos │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── unix │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── vita │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── windows │ │ │ │ └── SDL_sysfilesystem.c │ │ │ └── winrt │ │ │ │ └── SDL_sysfilesystem.cpp │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── android │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── darwin │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ └── SDL_xinputhaptic_c.h │ │ ├── hidapi │ │ │ ├── AUTHORS.txt │ │ │ ├── HACKING.txt │ │ │ ├── LICENSE-bsd.txt │ │ │ ├── LICENSE-gpl3.txt │ │ │ ├── LICENSE-orig.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.am │ │ │ ├── README.txt │ │ │ ├── SDL_hidapi.c │ │ │ ├── SDL_hidapi_c.h │ │ │ ├── android │ │ │ │ ├── hid.cpp │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ └── project.properties │ │ │ ├── bootstrap │ │ │ ├── configure.ac │ │ │ ├── doxygen │ │ │ │ └── Doxyfile │ │ │ ├── hidapi │ │ │ │ └── hidapi.h │ │ │ ├── hidtest │ │ │ │ ├── Makefile.am │ │ │ │ └── hidtest.cpp │ │ │ ├── ios │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.m │ │ │ ├── libusb │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── hid.c │ │ │ │ └── hidusb.cpp │ │ │ ├── linux │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── hid.c │ │ │ │ └── hidraw.cpp │ │ │ ├── m4 │ │ │ │ ├── ax_pthread.m4 │ │ │ │ └── pkg.m4 │ │ │ ├── mac │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.c │ │ │ ├── pc │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ └── hidapi.pc.in │ │ │ ├── testgui │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.mac │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Signal11.icns │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ ├── mac_support.cpp │ │ │ │ ├── mac_support.h │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ ├── start.sh │ │ │ │ ├── test.cpp │ │ │ │ ├── testgui.sln │ │ │ │ └── testgui.vcproj │ │ │ ├── udev │ │ │ │ └── 99-hid.rules │ │ │ └── windows │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── ddk_build │ │ │ │ ├── hidapi.def │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── hid.c │ │ │ │ ├── hidapi.sln │ │ │ │ ├── hidapi.vcproj │ │ │ │ └── hidtest.vcproj │ │ ├── joystick │ │ │ ├── SDL_gamecontroller.c │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ └── SDL_bsdjoystick.c │ │ │ ├── check_8bitdo.sh │ │ │ ├── controller_type.c │ │ │ ├── controller_type.h │ │ │ ├── darwin │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ └── SDL_iokitjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── emscripten │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── haiku │ │ │ │ └── SDL_haikujoystick.cc │ │ │ ├── hidapi │ │ │ │ ├── SDL_hidapi_combined.c │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ ├── SDL_hidapi_luna.c │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ ├── SDL_hidapi_ps5.c │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ ├── SDL_hidapi_shield.c │ │ │ │ ├── SDL_hidapi_stadia.c │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ └── steam │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ └── controller_structs.h │ │ │ ├── iphoneos │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ └── SDL_mfijoystick_c.h │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── os2 │ │ │ │ └── SDL_os2joystick.c │ │ │ ├── ps2 │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── steam │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ └── SDL_steamcontroller.h │ │ │ ├── usb_ids.h │ │ │ ├── virtual │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ ├── vita │ │ │ │ └── SDL_sysjoystick.c │ │ │ └── windows │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ └── SDL_xinputjoystick_c.h │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_exp.c │ │ │ ├── e_fmod.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_tan.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_sin.c │ │ │ └── s_tan.c │ │ ├── loadso │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── os2 │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ ├── locale │ │ │ ├── SDL_locale.c │ │ │ ├── SDL_syslocale.h │ │ │ ├── android │ │ │ │ └── SDL_syslocale.c │ │ │ ├── dummy │ │ │ │ └── SDL_syslocale.c │ │ │ ├── emscripten │ │ │ │ └── SDL_syslocale.c │ │ │ ├── haiku │ │ │ │ └── SDL_syslocale.cc │ │ │ ├── macosx │ │ │ │ └── SDL_syslocale.m │ │ │ ├── unix │ │ │ │ └── SDL_syslocale.c │ │ │ ├── vita │ │ │ │ └── SDL_syslocale.c │ │ │ ├── windows │ │ │ │ └── SDL_syslocale.c │ │ │ └── winrt │ │ │ │ └── SDL_syslocale.c │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── gdk │ │ │ │ └── SDL_gdk_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── nacl │ │ │ │ └── SDL_nacl_main.c │ │ │ ├── ngage │ │ │ │ └── SDL_ngage_main.cpp │ │ │ ├── ps2 │ │ │ │ └── SDL_ps2_main.c │ │ │ ├── psp │ │ │ │ └── SDL_psp_main.c │ │ │ ├── uikit │ │ │ │ └── SDL_uikit_main.c │ │ │ ├── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ └── winrt │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ ├── misc │ │ │ ├── SDL_sysurl.h │ │ │ ├── SDL_url.c │ │ │ ├── android │ │ │ │ └── SDL_sysurl.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysurl.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysurl.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysurl.cc │ │ │ ├── ios │ │ │ │ └── SDL_sysurl.m │ │ │ ├── macosx │ │ │ │ └── SDL_sysurl.m │ │ │ ├── riscos │ │ │ │ └── SDL_sysurl.c │ │ │ ├── unix │ │ │ │ └── SDL_sysurl.c │ │ │ ├── vita │ │ │ │ └── SDL_sysurl.c │ │ │ ├── windows │ │ │ │ └── SDL_sysurl.c │ │ │ └── winrt │ │ │ │ └── SDL_sysurl.cpp │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── SDL_syspower.h │ │ │ ├── android │ │ │ │ └── SDL_syspower.c │ │ │ ├── emscripten │ │ │ │ └── SDL_syspower.c │ │ │ ├── haiku │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── psp │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ ├── vita │ │ │ │ └── SDL_syspower.c │ │ │ ├── windows │ │ │ │ └── SDL_syspower.c │ │ │ └── winrt │ │ │ │ └── SDL_syspower.cpp │ │ ├── render │ │ │ ├── SDL_d3dmath.c │ │ │ ├── SDL_d3dmath.h │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ └── SDL_shaders_d3d.h │ │ │ ├── direct3d11 │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ ├── direct3d12 │ │ │ │ ├── SDL_render_d3d12.c │ │ │ │ ├── SDL_render_d3d12_xbox.cpp │ │ │ │ ├── SDL_render_d3d12_xbox.h │ │ │ │ ├── SDL_shaders_d3d12.c │ │ │ │ ├── SDL_shaders_d3d12.h │ │ │ │ ├── SDL_shaders_d3d12_xboxone.cpp │ │ │ │ └── SDL_shaders_d3d12_xboxseries.cpp │ │ │ ├── metal │ │ │ │ ├── SDL_render_metal.m │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ └── build-metal-shaders.sh │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ ├── ps2 │ │ │ │ └── SDL_render_ps2.c │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ ├── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ ├── SDL_rotate.c │ │ │ │ ├── SDL_rotate.h │ │ │ │ ├── SDL_triangle.c │ │ │ │ └── SDL_triangle.h │ │ │ └── vitagxm │ │ │ │ ├── SDL_render_vita_gxm.c │ │ │ │ ├── SDL_render_vita_gxm_memory.c │ │ │ │ ├── SDL_render_vita_gxm_memory.h │ │ │ │ ├── SDL_render_vita_gxm_shaders.h │ │ │ │ ├── SDL_render_vita_gxm_tools.c │ │ │ │ ├── SDL_render_vita_gxm_tools.h │ │ │ │ ├── SDL_render_vita_gxm_types.h │ │ │ │ └── shader_src │ │ │ │ ├── clear_f.cg │ │ │ │ ├── clear_v.cg │ │ │ │ ├── color_f.cg │ │ │ │ ├── color_v.cg │ │ │ │ ├── texture_f.cg │ │ │ │ └── texture_v.cg │ │ ├── sensor │ │ │ ├── SDL_sensor.c │ │ │ ├── SDL_sensor_c.h │ │ │ ├── SDL_syssensor.h │ │ │ ├── android │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ └── SDL_androidsensor.h │ │ │ ├── coremotion │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ └── SDL_coremotionsensor.m │ │ │ ├── dummy │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ └── SDL_dummysensor.h │ │ │ ├── vita │ │ │ │ ├── SDL_vitasensor.c │ │ │ │ └── SDL_vitasensor.h │ │ │ └── windows │ │ │ │ ├── SDL_windowssensor.c │ │ │ │ └── SDL_windowssensor.h │ │ ├── stdlib │ │ │ ├── SDL_crc32.c │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_mslibc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ ├── SDL_string.c │ │ │ ├── SDL_strtokr.c │ │ │ └── SDL_vacopy.h │ │ ├── test │ │ │ ├── SDL_test_assert.c │ │ │ ├── SDL_test_common.c │ │ │ ├── SDL_test_compare.c │ │ │ ├── SDL_test_crc32.c │ │ │ ├── SDL_test_font.c │ │ │ ├── SDL_test_fuzzer.c │ │ │ ├── SDL_test_harness.c │ │ │ ├── SDL_test_imageBlit.c │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ ├── SDL_test_imageFace.c │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ ├── SDL_test_log.c │ │ │ ├── SDL_test_md5.c │ │ │ ├── SDL_test_memory.c │ │ │ └── SDL_test_random.c │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── ngage │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_syssem.cpp │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── os2 │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ ├── SDL_systls.c │ │ │ │ └── SDL_systls_c.h │ │ │ ├── ps2 │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── stdcpp │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── vita │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_syscond_cv.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── haiku │ │ │ │ └── SDL_systimer.c │ │ │ ├── ngage │ │ │ │ └── SDL_systimer.cpp │ │ │ ├── os2 │ │ │ │ └── SDL_systimer.c │ │ │ ├── ps2 │ │ │ │ └── SDL_systimer.c │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ ├── vita │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_egl.c │ │ │ ├── SDL_egl_c.h │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_rect_impl.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── SDL_vulkan_internal.h │ │ │ ├── SDL_vulkan_utils.c │ │ │ ├── SDL_yuv.c │ │ │ ├── SDL_yuv_c.h │ │ │ ├── android │ │ │ ├── SDL_androidclipboard.c │ │ │ ├── SDL_androidclipboard.h │ │ │ ├── SDL_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidgl.h │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidmessagebox.c │ │ │ ├── SDL_androidmessagebox.h │ │ │ ├── SDL_androidmouse.c │ │ │ ├── SDL_androidmouse.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidvulkan.c │ │ │ ├── SDL_androidvulkan.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── arm │ │ │ ├── pixman-arm-asm.h │ │ │ ├── pixman-arm-neon-asm.S │ │ │ ├── pixman-arm-neon-asm.h │ │ │ ├── pixman-arm-simd-asm.S │ │ │ └── pixman-arm-simd-asm.h │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamessagebox.h │ │ │ ├── SDL_cocoamessagebox.m │ │ │ ├── SDL_cocoametalview.h │ │ │ ├── SDL_cocoametalview.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.m │ │ │ ├── SDL_cocoaopengles.h │ │ │ ├── SDL_cocoaopengles.m │ │ │ ├── SDL_cocoashape.h │ │ │ ├── SDL_cocoashape.m │ │ │ ├── SDL_cocoavideo.h │ │ │ ├── SDL_cocoavideo.m │ │ │ ├── SDL_cocoavulkan.h │ │ │ ├── SDL_cocoavulkan.m │ │ │ ├── SDL_cocoawindow.h │ │ │ └── SDL_cocoawindow.m │ │ │ ├── directfb │ │ │ ├── SDL_DirectFB_WM.c │ │ │ ├── SDL_DirectFB_WM.h │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ ├── SDL_DirectFB_events.c │ │ │ ├── SDL_DirectFB_events.h │ │ │ ├── SDL_DirectFB_modes.c │ │ │ ├── SDL_DirectFB_modes.h │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ ├── SDL_DirectFB_render.c │ │ │ ├── SDL_DirectFB_render.h │ │ │ ├── SDL_DirectFB_shape.c │ │ │ ├── SDL_DirectFB_shape.h │ │ │ ├── SDL_DirectFB_video.c │ │ │ ├── SDL_DirectFB_video.h │ │ │ ├── SDL_DirectFB_vulkan.c │ │ │ ├── SDL_DirectFB_vulkan.h │ │ │ ├── SDL_DirectFB_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── emscripten │ │ │ ├── SDL_emscriptenevents.c │ │ │ ├── SDL_emscriptenevents.h │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ ├── SDL_emscriptenmouse.c │ │ │ ├── SDL_emscriptenmouse.h │ │ │ ├── SDL_emscriptenopengles.c │ │ │ ├── SDL_emscriptenopengles.h │ │ │ ├── SDL_emscriptenvideo.c │ │ │ └── SDL_emscriptenvideo.h │ │ │ ├── haiku │ │ │ ├── SDL_BApp.h │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_bclipboard.cc │ │ │ ├── SDL_bclipboard.h │ │ │ ├── SDL_bevents.cc │ │ │ ├── SDL_bevents.h │ │ │ ├── SDL_bframebuffer.cc │ │ │ ├── SDL_bframebuffer.h │ │ │ ├── SDL_bkeyboard.cc │ │ │ ├── SDL_bkeyboard.h │ │ │ ├── SDL_bmessagebox.cc │ │ │ ├── SDL_bmessagebox.h │ │ │ ├── SDL_bmodes.cc │ │ │ ├── SDL_bmodes.h │ │ │ ├── SDL_bopengl.cc │ │ │ ├── SDL_bopengl.h │ │ │ ├── SDL_bvideo.cc │ │ │ ├── SDL_bvideo.h │ │ │ ├── SDL_bwindow.cc │ │ │ └── SDL_bwindow.h │ │ │ ├── khronos │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ └── vulkan │ │ │ │ ├── vk_icd.h │ │ │ │ ├── vk_layer.h │ │ │ │ ├── vk_platform.h │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ ├── vulkan.h │ │ │ │ ├── vulkan.hpp │ │ │ │ ├── vulkan_android.h │ │ │ │ ├── vulkan_beta.h │ │ │ │ ├── vulkan_core.h │ │ │ │ ├── vulkan_directfb.h │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ ├── vulkan_ggp.h │ │ │ │ ├── vulkan_ios.h │ │ │ │ ├── vulkan_macos.h │ │ │ │ ├── vulkan_metal.h │ │ │ │ ├── vulkan_vi.h │ │ │ │ ├── vulkan_wayland.h │ │ │ │ ├── vulkan_win32.h │ │ │ │ ├── vulkan_xcb.h │ │ │ │ ├── vulkan_xlib.h │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ ├── kmsdrm │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ ├── SDL_kmsdrmevents.c │ │ │ ├── SDL_kmsdrmevents.h │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ ├── SDL_kmsdrmsym.h │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ ├── SDL_kmsdrmvideo.h │ │ │ ├── SDL_kmsdrmvulkan.c │ │ │ └── SDL_kmsdrmvulkan.h │ │ │ ├── nacl │ │ │ ├── SDL_naclevents.c │ │ │ ├── SDL_naclevents_c.h │ │ │ ├── SDL_naclglue.c │ │ │ ├── SDL_naclopengles.c │ │ │ ├── SDL_naclopengles.h │ │ │ ├── SDL_naclvideo.c │ │ │ ├── SDL_naclvideo.h │ │ │ ├── SDL_naclwindow.c │ │ │ └── SDL_naclwindow.h │ │ │ ├── ngage │ │ │ ├── SDL_ngageevents.cpp │ │ │ ├── SDL_ngageevents_c.h │ │ │ ├── SDL_ngageframebuffer.cpp │ │ │ ├── SDL_ngageframebuffer_c.h │ │ │ ├── SDL_ngagevideo.cpp │ │ │ ├── SDL_ngagevideo.h │ │ │ ├── SDL_ngagewindow.cpp │ │ │ └── SDL_ngagewindow.h │ │ │ ├── offscreen │ │ │ ├── SDL_offscreenevents.c │ │ │ ├── SDL_offscreenevents_c.h │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ ├── SDL_offscreenopengl.c │ │ │ ├── SDL_offscreenopengl.h │ │ │ ├── SDL_offscreenvideo.c │ │ │ ├── SDL_offscreenvideo.h │ │ │ ├── SDL_offscreenwindow.c │ │ │ └── SDL_offscreenwindow.h │ │ │ ├── os2 │ │ │ ├── SDL_gradd.h │ │ │ ├── SDL_os2dive.c │ │ │ ├── SDL_os2messagebox.c │ │ │ ├── SDL_os2messagebox.h │ │ │ ├── SDL_os2mouse.c │ │ │ ├── SDL_os2mouse.h │ │ │ ├── SDL_os2output.h │ │ │ ├── SDL_os2util.c │ │ │ ├── SDL_os2util.h │ │ │ ├── SDL_os2video.c │ │ │ ├── SDL_os2video.h │ │ │ └── SDL_os2vman.c │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── ps2 │ │ │ ├── SDL_ps2video.c │ │ │ └── SDL_ps2video.h │ │ │ ├── psp │ │ │ ├── SDL_pspevents.c │ │ │ ├── SDL_pspevents_c.h │ │ │ ├── SDL_pspgl.c │ │ │ ├── SDL_pspgl_c.h │ │ │ ├── SDL_pspmouse.c │ │ │ ├── SDL_pspmouse_c.h │ │ │ ├── SDL_pspvideo.c │ │ │ └── SDL_pspvideo.h │ │ │ ├── qnx │ │ │ ├── gl.c │ │ │ ├── keyboard.c │ │ │ ├── sdl_qnx.h │ │ │ └── video.c │ │ │ ├── raspberry │ │ │ ├── SDL_rpievents.c │ │ │ ├── SDL_rpievents_c.h │ │ │ ├── SDL_rpimouse.c │ │ │ ├── SDL_rpimouse.h │ │ │ ├── SDL_rpiopengles.c │ │ │ ├── SDL_rpiopengles.h │ │ │ ├── SDL_rpivideo.c │ │ │ └── SDL_rpivideo.h │ │ │ ├── riscos │ │ │ ├── SDL_riscosdefs.h │ │ │ ├── SDL_riscosevents.c │ │ │ ├── SDL_riscosevents_c.h │ │ │ ├── SDL_riscosframebuffer.c │ │ │ ├── SDL_riscosframebuffer_c.h │ │ │ ├── SDL_riscosmessagebox.c │ │ │ ├── SDL_riscosmessagebox.h │ │ │ ├── SDL_riscosmodes.c │ │ │ ├── SDL_riscosmodes.h │ │ │ ├── SDL_riscosmouse.c │ │ │ ├── SDL_riscosmouse.h │ │ │ ├── SDL_riscosvideo.c │ │ │ ├── SDL_riscosvideo.h │ │ │ ├── SDL_riscoswindow.c │ │ │ ├── SDL_riscoswindow.h │ │ │ └── scancodes_riscos.h │ │ │ ├── sdlgenblit.pl │ │ │ ├── uikit │ │ │ ├── SDL_uikitappdelegate.h │ │ │ ├── SDL_uikitappdelegate.m │ │ │ ├── SDL_uikitclipboard.h │ │ │ ├── SDL_uikitclipboard.m │ │ │ ├── SDL_uikitevents.h │ │ │ ├── SDL_uikitevents.m │ │ │ ├── SDL_uikitmessagebox.h │ │ │ ├── SDL_uikitmessagebox.m │ │ │ ├── SDL_uikitmetalview.h │ │ │ ├── SDL_uikitmetalview.m │ │ │ ├── SDL_uikitmodes.h │ │ │ ├── SDL_uikitmodes.m │ │ │ ├── SDL_uikitopengles.h │ │ │ ├── SDL_uikitopengles.m │ │ │ ├── SDL_uikitopenglview.h │ │ │ ├── SDL_uikitopenglview.m │ │ │ ├── SDL_uikitvideo.h │ │ │ ├── SDL_uikitvideo.m │ │ │ ├── SDL_uikitview.h │ │ │ ├── SDL_uikitview.m │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ ├── SDL_uikitvulkan.h │ │ │ ├── SDL_uikitvulkan.m │ │ │ ├── SDL_uikitwindow.h │ │ │ └── SDL_uikitwindow.m │ │ │ ├── vita │ │ │ ├── SDL_vitaframebuffer.c │ │ │ ├── SDL_vitaframebuffer.h │ │ │ ├── SDL_vitagl_pvr.c │ │ │ ├── SDL_vitagl_pvr_c.h │ │ │ ├── SDL_vitagles.c │ │ │ ├── SDL_vitagles_c.h │ │ │ ├── SDL_vitagles_pvr.c │ │ │ ├── SDL_vitagles_pvr_c.h │ │ │ ├── SDL_vitakeyboard.c │ │ │ ├── SDL_vitakeyboard.h │ │ │ ├── SDL_vitamessagebox.c │ │ │ ├── SDL_vitamessagebox.h │ │ │ ├── SDL_vitamouse.c │ │ │ ├── SDL_vitamouse_c.h │ │ │ ├── SDL_vitatouch.c │ │ │ ├── SDL_vitatouch.h │ │ │ ├── SDL_vitavideo.c │ │ │ └── SDL_vitavideo.h │ │ │ ├── vivante │ │ │ ├── SDL_vivanteopengles.c │ │ │ ├── SDL_vivanteopengles.h │ │ │ ├── SDL_vivanteplatform.c │ │ │ ├── SDL_vivanteplatform.h │ │ │ ├── SDL_vivantevideo.c │ │ │ ├── SDL_vivantevideo.h │ │ │ ├── SDL_vivantevulkan.c │ │ │ └── SDL_vivantevulkan.h │ │ │ ├── wayland │ │ │ ├── SDL_waylandclipboard.c │ │ │ ├── SDL_waylandclipboard.h │ │ │ ├── SDL_waylanddatamanager.c │ │ │ ├── SDL_waylanddatamanager.h │ │ │ ├── SDL_waylanddyn.c │ │ │ ├── SDL_waylanddyn.h │ │ │ ├── SDL_waylandevents.c │ │ │ ├── SDL_waylandevents_c.h │ │ │ ├── SDL_waylandkeyboard.c │ │ │ ├── SDL_waylandkeyboard.h │ │ │ ├── SDL_waylandmessagebox.c │ │ │ ├── SDL_waylandmessagebox.h │ │ │ ├── SDL_waylandmouse.c │ │ │ ├── SDL_waylandmouse.h │ │ │ ├── SDL_waylandopengles.c │ │ │ ├── SDL_waylandopengles.h │ │ │ ├── SDL_waylandsym.h │ │ │ ├── SDL_waylandtouch.c │ │ │ ├── SDL_waylandtouch.h │ │ │ ├── SDL_waylandvideo.c │ │ │ ├── SDL_waylandvideo.h │ │ │ ├── SDL_waylandvulkan.c │ │ │ ├── SDL_waylandvulkan.h │ │ │ ├── SDL_waylandwindow.c │ │ │ └── SDL_waylandwindow.h │ │ │ ├── windows │ │ │ ├── SDL_msctf.h │ │ │ ├── SDL_vkeys.h │ │ │ ├── SDL_windowsclipboard.c │ │ │ ├── SDL_windowsclipboard.h │ │ │ ├── SDL_windowsevents.c │ │ │ ├── SDL_windowsevents.h │ │ │ ├── SDL_windowsframebuffer.c │ │ │ ├── SDL_windowsframebuffer.h │ │ │ ├── SDL_windowskeyboard.c │ │ │ ├── SDL_windowskeyboard.h │ │ │ ├── SDL_windowsmessagebox.c │ │ │ ├── SDL_windowsmessagebox.h │ │ │ ├── SDL_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsopengles.c │ │ │ ├── SDL_windowsopengles.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowstaskdialog.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowsvulkan.c │ │ │ ├── SDL_windowsvulkan.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.h │ │ │ ├── winrt │ │ │ ├── SDL_winrtevents.cpp │ │ │ ├── SDL_winrtevents_c.h │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ ├── SDL_winrtmessagebox.h │ │ │ ├── SDL_winrtmouse.cpp │ │ │ ├── SDL_winrtmouse_c.h │ │ │ ├── SDL_winrtopengles.cpp │ │ │ ├── SDL_winrtopengles.h │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ ├── SDL_winrtvideo.cpp │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ ├── x11 │ │ │ ├── SDL_x11clipboard.c │ │ │ ├── SDL_x11clipboard.h │ │ │ ├── SDL_x11dyn.c │ │ │ ├── SDL_x11dyn.h │ │ │ ├── SDL_x11events.c │ │ │ ├── SDL_x11events.h │ │ │ ├── SDL_x11framebuffer.c │ │ │ ├── SDL_x11framebuffer.h │ │ │ ├── SDL_x11keyboard.c │ │ │ ├── SDL_x11keyboard.h │ │ │ ├── SDL_x11messagebox.c │ │ │ ├── SDL_x11messagebox.h │ │ │ ├── SDL_x11modes.c │ │ │ ├── SDL_x11modes.h │ │ │ ├── SDL_x11mouse.c │ │ │ ├── SDL_x11mouse.h │ │ │ ├── SDL_x11opengl.c │ │ │ ├── SDL_x11opengl.h │ │ │ ├── SDL_x11opengles.c │ │ │ ├── SDL_x11opengles.h │ │ │ ├── SDL_x11shape.c │ │ │ ├── SDL_x11shape.h │ │ │ ├── SDL_x11sym.h │ │ │ ├── SDL_x11touch.c │ │ │ ├── SDL_x11touch.h │ │ │ ├── SDL_x11video.c │ │ │ ├── SDL_x11video.h │ │ │ ├── SDL_x11vulkan.c │ │ │ ├── SDL_x11vulkan.h │ │ │ ├── SDL_x11window.c │ │ │ ├── SDL_x11window.h │ │ │ ├── SDL_x11xfixes.c │ │ │ ├── SDL_x11xfixes.h │ │ │ ├── SDL_x11xinput2.c │ │ │ ├── SDL_x11xinput2.h │ │ │ ├── edid-parse.c │ │ │ └── edid.h │ │ │ └── yuv2rgb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── yuv_rgb.c │ │ │ ├── yuv_rgb.h │ │ │ ├── yuv_rgb_lsx_func.h │ │ │ ├── yuv_rgb_sse_func.h │ │ │ └── yuv_rgb_std_func.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── Makefile.os2 │ │ ├── Makefile.w32 │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── checkkeysthreads.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── controllermap_back.bmp │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── loopwavequeue.c │ │ ├── moose.dat │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ ├── template.test.in │ │ ├── testatomic.c │ │ ├── testaudiocapture.c │ │ ├── testaudiohotplug.c │ │ ├── testaudioinfo.c │ │ ├── testautomation.c │ │ ├── testautomation_audio.c │ │ ├── testautomation_clipboard.c │ │ ├── testautomation_events.c │ │ ├── testautomation_guid.c │ │ ├── testautomation_hints.c │ │ ├── testautomation_joystick.c │ │ ├── testautomation_keyboard.c │ │ ├── testautomation_main.c │ │ ├── testautomation_math.c │ │ ├── testautomation_mouse.c │ │ ├── testautomation_pixels.c │ │ ├── testautomation_platform.c │ │ ├── testautomation_rect.c │ │ ├── testautomation_render.c │ │ ├── testautomation_rwops.c │ │ ├── testautomation_sdltest.c │ │ ├── testautomation_stdlib.c │ │ ├── testautomation_suites.h │ │ ├── testautomation_surface.c │ │ ├── testautomation_syswm.c │ │ ├── testautomation_timer.c │ │ ├── testautomation_video.c │ │ ├── testbounds.c │ │ ├── testcustomcursor.c │ │ ├── testdisplayinfo.c │ │ ├── testdraw2.c │ │ ├── testdrawchessboard.c │ │ ├── testdropfile.c │ │ ├── testerror.c │ │ ├── testevdev.c │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgeometry.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testgles2_sdf.c │ │ ├── testgles2_sdf_img_normal.bmp │ │ ├── testgles2_sdf_img_sdf.bmp │ │ ├── testhaptic.c │ │ ├── testhittesting.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlocale.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmouse.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativeos2.c │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoffscreen.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testqsort.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testsensor.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testsurround.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testurl.c │ │ ├── testutils.c │ │ ├── testutils.h │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testvulkan.c │ │ ├── testwm2.c │ │ ├── testyuv.bmp │ │ ├── testyuv.c │ │ ├── testyuv_cvt.c │ │ ├── testyuv_cvt.h │ │ ├── torturethread.c │ │ ├── unifont-13.0.06-license.txt │ │ ├── unifont-13.0.06.hex │ │ ├── utf8.txt │ │ ├── versioning.sh │ │ └── watcom.mif │ ├── visualtest │ │ ├── COPYING.txt │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── configs │ │ │ ├── testsprite2_blendmodes │ │ │ │ ├── testsprite2_blendmodes.actions │ │ │ │ ├── testsprite2_blendmodes.config │ │ │ │ └── testsprite2_blendmodes.parameters │ │ │ ├── testsprite2_crashtest │ │ │ │ ├── testsprite2_crashtest.actions │ │ │ │ ├── testsprite2_crashtest.config │ │ │ │ └── testsprite2_crashtest.parameters │ │ │ ├── testsprite2_fullscreen │ │ │ │ ├── testsprite2_fullscreen.actions │ │ │ │ ├── testsprite2_fullscreen.config │ │ │ │ └── testsprite2_fullscreen.parameters │ │ │ └── testsprite2_geometry │ │ │ │ ├── testsprite2_geometry.actions │ │ │ │ ├── testsprite2_geometry.config │ │ │ │ └── testsprite2_geometry.parameters │ │ ├── configure │ │ ├── configure.ac │ │ ├── docs │ │ │ └── Doxyfile │ │ ├── include │ │ │ ├── SDL_visualtest_action_configparser.h │ │ │ ├── SDL_visualtest_exhaustive_variator.h │ │ │ ├── SDL_visualtest_harness_argparser.h │ │ │ ├── SDL_visualtest_mischelper.h │ │ │ ├── SDL_visualtest_parsehelper.h │ │ │ ├── SDL_visualtest_process.h │ │ │ ├── SDL_visualtest_random_variator.h │ │ │ ├── SDL_visualtest_rwhelper.h │ │ │ ├── SDL_visualtest_screenshot.h │ │ │ ├── SDL_visualtest_sut_configparser.h │ │ │ ├── SDL_visualtest_variator_common.h │ │ │ └── SDL_visualtest_variators.h │ │ ├── launch_harness.cmd │ │ ├── launch_harness.sh │ │ ├── src │ │ │ ├── action_configparser.c │ │ │ ├── harness_argparser.c │ │ │ ├── linux │ │ │ │ └── linux_process.c │ │ │ ├── mischelper.c │ │ │ ├── parsehelper.c │ │ │ ├── rwhelper.c │ │ │ ├── screenshot.c │ │ │ ├── sut_configparser.c │ │ │ ├── testharness.c │ │ │ ├── variator_common.c │ │ │ ├── variator_exhaustive.c │ │ │ ├── variator_random.c │ │ │ ├── variators.c │ │ │ └── windows │ │ │ │ ├── windows_process.c │ │ │ │ └── windows_screenshot.c │ │ ├── testsprite2_sample.actions │ │ ├── testsprite2_sample.config │ │ ├── testsprite2_sample.parameters │ │ └── unittest │ │ │ ├── testquit.actions │ │ │ ├── testquit.c │ │ │ ├── testquit.config │ │ │ └── testquit.parameters │ └── wayland-protocols │ │ ├── idle-inhibit-unstable-v1.xml │ │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ │ ├── pointer-constraints-unstable-v1.xml │ │ ├── relative-pointer-unstable-v1.xml │ │ ├── tablet-unstable-v2.xml │ │ ├── text-input-unstable-v3.xml │ │ ├── viewporter.xml │ │ ├── wayland.xml │ │ ├── xdg-activation-v1.xml │ │ ├── xdg-decoration-unstable-v1.xml │ │ ├── xdg-output-unstable-v1.xml │ │ └── xdg-shell.xml ├── Vulkan-Headers │ └── include │ │ ├── vk_video │ │ ├── vulkan_video_codec_h264std.h │ │ ├── vulkan_video_codec_h264std_decode.h │ │ ├── vulkan_video_codec_h264std_encode.h │ │ ├── vulkan_video_codec_h265std.h │ │ ├── vulkan_video_codec_h265std_decode.h │ │ └── vulkan_video_codecs_common.h │ │ └── vulkan │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_platform.h │ │ ├── vk_sdk_platform.h │ │ ├── vulkan.h │ │ ├── vulkan.hpp │ │ ├── vulkan_android.h │ │ ├── vulkan_beta.h │ │ ├── vulkan_core.h │ │ ├── vulkan_directfb.h │ │ ├── vulkan_fuchsia.h │ │ ├── vulkan_ggp.h │ │ ├── vulkan_ios.h │ │ ├── vulkan_macos.h │ │ ├── vulkan_metal.h │ │ ├── vulkan_screen.h │ │ ├── vulkan_vi.h │ │ ├── vulkan_wayland.h │ │ ├── vulkan_win32.h │ │ ├── vulkan_xcb.h │ │ ├── vulkan_xlib.h │ │ └── vulkan_xlib_xrandr.h ├── cubeb │ ├── .clang-format │ ├── .github │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── .gitmodules │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ ├── compile_tests │ │ │ └── oss_is_v4.c │ │ ├── sanitizers-cmake │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── FindASan.cmake │ │ │ │ ├── FindMSan.cmake │ │ │ │ ├── FindSanitizers.cmake │ │ │ │ ├── FindTSan.cmake │ │ │ │ ├── FindUBSan.cmake │ │ │ │ ├── asan-wrapper │ │ │ │ └── sanitize-helpers.cmake │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── asan_test.cpp │ │ │ │ └── shortest.ext.test.cpp │ │ └── toolchain-cross-mingw.cmake │ ├── cubeb.supp │ ├── docs │ │ └── Doxyfile.in │ ├── googletest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ ├── include │ │ └── cubeb │ │ │ └── cubeb.h │ ├── scan-build-install.sh │ ├── src │ │ ├── android │ │ │ ├── audiotrack_definitions.h │ │ │ ├── cubeb-output-latency.h │ │ │ ├── cubeb_media_library.h │ │ │ └── sles_definitions.h │ │ ├── cubeb-internal.h │ │ ├── cubeb-jni-instances.h │ │ ├── cubeb-jni.cpp │ │ ├── cubeb-jni.h │ │ ├── cubeb-sles.h │ │ ├── cubeb-speex-resampler.h │ │ ├── cubeb.c │ │ ├── cubeb_aaudio.cpp │ │ ├── cubeb_alsa.c │ │ ├── cubeb_android.h │ │ ├── cubeb_array_queue.h │ │ ├── cubeb_assert.h │ │ ├── cubeb_audiotrack.c │ │ ├── cubeb_audiounit.cpp │ │ ├── cubeb_jack.cpp │ │ ├── cubeb_kai.c │ │ ├── cubeb_log.cpp │ │ ├── cubeb_log.h │ │ ├── cubeb_mixer.cpp │ │ ├── cubeb_mixer.h │ │ ├── cubeb_opensl.c │ │ ├── cubeb_oss.c │ │ ├── cubeb_osx_run_loop.cpp │ │ ├── cubeb_osx_run_loop.h │ │ ├── cubeb_pulse.c │ │ ├── cubeb_resampler.cpp │ │ ├── cubeb_resampler.h │ │ ├── cubeb_resampler_internal.h │ │ ├── cubeb_ring_array.h │ │ ├── cubeb_ringbuffer.h │ │ ├── cubeb_sndio.c │ │ ├── cubeb_strings.c │ │ ├── cubeb_strings.h │ │ ├── cubeb_sun.c │ │ ├── cubeb_tracing.h │ │ ├── cubeb_utils.cpp │ │ ├── cubeb_utils.h │ │ ├── cubeb_utils_unix.h │ │ ├── cubeb_utils_win.h │ │ ├── cubeb_wasapi.cpp │ │ └── cubeb_winmm.c │ ├── subprojects │ │ └── speex │ │ │ ├── arch.h │ │ │ ├── fixed_generic.h │ │ │ ├── resample.c │ │ │ ├── resample_neon.h │ │ │ ├── resample_sse.h │ │ │ ├── speex_config_types.h │ │ │ ├── speex_resampler.h │ │ │ └── stack_alloc.h │ ├── test │ │ ├── README.md │ │ ├── common.h │ │ ├── test_audio.cpp │ │ ├── test_callback_ret.cpp │ │ ├── test_deadlock.cpp │ │ ├── test_device_changed_callback.cpp │ │ ├── test_devices.cpp │ │ ├── test_duplex.cpp │ │ ├── test_latency.cpp │ │ ├── test_loopback.cpp │ │ ├── test_overload_callback.cpp │ │ ├── test_record.cpp │ │ ├── test_resampler.cpp │ │ ├── test_ring_array.cpp │ │ ├── test_ring_buffer.cpp │ │ ├── test_sanity.cpp │ │ ├── test_tone.cpp │ │ └── test_utils.cpp │ └── tools │ │ └── cubeb-test.cpp ├── fmt │ └── include │ │ └── fmt │ │ ├── args.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── xchar.h ├── mbedtls │ ├── .gitignore │ ├── .globalrc │ ├── .mypy.ini │ ├── .pylintrc │ ├── .travis.yml │ ├── 3rdparty │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.inc │ │ └── everest │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.inc │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── everest │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ ├── everest.h │ │ │ │ ├── kremlib.h │ │ │ │ ├── kremlib │ │ │ │ ├── FStar_UInt128.h │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h │ │ │ │ ├── kremlin │ │ │ │ ├── c_endianness.h │ │ │ │ └── internal │ │ │ │ │ ├── builtin.h │ │ │ │ │ ├── callconv.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── target.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── wasmsupport.h │ │ │ │ ├── vs2010 │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ ├── inttypes.h │ │ │ │ └── stdbool.h │ │ │ │ └── x25519.h │ │ │ └── library │ │ │ ├── Hacl_Curve25519.c │ │ │ ├── Hacl_Curve25519_joined.c │ │ │ ├── everest.c │ │ │ ├── kremlib │ │ │ ├── FStar_UInt128_extracted.c │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c │ │ │ ├── legacy │ │ │ └── Hacl_Curve25519.c │ │ │ └── x25519.c │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog │ ├── ChangeLog.d │ │ ├── 00README.md │ │ ├── fix-printf-specifiers.txt │ │ └── fix_memsan_build_clang11.txt │ ├── DartConfiguration.tcl │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── configs │ │ ├── README.txt │ │ ├── config-ccm-psk-tls1_2.h │ │ ├── config-mini-tls1_1.h │ │ ├── config-no-entropy.h │ │ ├── config-psa-crypto.h │ │ ├── config-suite-b.h │ │ ├── config-symmetric-only.h │ │ └── config-thread.h │ ├── dco.txt │ ├── docs │ │ ├── .gitignore │ │ ├── PSACryptoDriverModelSpec.pdf │ │ ├── architecture │ │ │ ├── Makefile │ │ │ ├── mbed-crypto-storage-specification.md │ │ │ ├── psa-crypto-implementation-structure.md │ │ │ ├── testing │ │ │ │ ├── driver-interface-test-strategy.md │ │ │ │ ├── invasive-testing.md │ │ │ │ ├── psa-storage-format-testing.md │ │ │ │ └── test-framework.md │ │ │ └── tls13-experimental.md │ │ ├── getting_started.md │ │ └── proposed │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── psa-conditional-inclusion-c.md │ │ │ ├── psa-driver-developer-guide.md │ │ │ ├── psa-driver-integration-guide.md │ │ │ └── psa-driver-interface.md │ ├── doxygen │ │ ├── input │ │ │ ├── doc_encdec.h │ │ │ ├── doc_hashing.h │ │ │ ├── doc_mainpage.h │ │ │ ├── doc_rng.h │ │ │ ├── doc_ssltls.h │ │ │ ├── doc_tcpip.h │ │ │ └── doc_x509.h │ │ └── mbedtls.doxyfile │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── mbedtls │ │ │ ├── aes.h │ │ │ ├── aesni.h │ │ │ ├── arc4.h │ │ │ ├── aria.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── certs.h │ │ │ ├── chacha20.h │ │ │ ├── chachapoly.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cipher_internal.h │ │ │ ├── cmac.h │ │ │ ├── compat-1.3.h │ │ │ ├── config.h │ │ │ ├── config_psa.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecjpake.h │ │ │ ├── ecp.h │ │ │ ├── ecp_internal.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── hkdf.h │ │ │ ├── hmac_drbg.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_internal.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net.h │ │ │ ├── net_sockets.h │ │ │ ├── nist_kw.h │ │ │ ├── oid.h │ │ │ ├── padlock.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pk_internal.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── platform.h │ │ │ ├── platform_time.h │ │ │ ├── platform_util.h │ │ │ ├── poly1305.h │ │ │ ├── psa_util.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── rsa_internal.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_internal.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ ├── x509_csr.h │ │ │ └── xtea.h │ │ └── psa │ │ │ ├── crypto.h │ │ │ ├── crypto_compat.h │ │ │ ├── crypto_config.h │ │ │ ├── crypto_driver_common.h │ │ │ ├── crypto_extra.h │ │ │ ├── crypto_platform.h │ │ │ ├── crypto_se_driver.h │ │ │ ├── crypto_sizes.h │ │ │ ├── crypto_struct.h │ │ │ ├── crypto_types.h │ │ │ └── crypto_values.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aesni.c │ │ ├── arc4.c │ │ ├── aria.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── certs.c │ │ ├── chacha20.c │ │ ├── chachapoly.c │ │ ├── check_crypto_config.h │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── cmac.c │ │ ├── common.h │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecjpake.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── hkdf.c │ │ ├── hmac_drbg.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memory_buffer_alloc.c │ │ ├── net_sockets.c │ │ ├── nist_kw.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── platform_util.c │ │ ├── poly1305.c │ │ ├── psa_crypto.c │ │ ├── psa_crypto_client.c │ │ ├── psa_crypto_core.h │ │ ├── psa_crypto_driver_wrappers.c │ │ ├── psa_crypto_driver_wrappers.h │ │ ├── psa_crypto_ecp.c │ │ ├── psa_crypto_ecp.h │ │ ├── psa_crypto_invasive.h │ │ ├── psa_crypto_its.h │ │ ├── psa_crypto_random_impl.h │ │ ├── psa_crypto_rsa.c │ │ ├── psa_crypto_rsa.h │ │ ├── psa_crypto_se.c │ │ ├── psa_crypto_se.h │ │ ├── psa_crypto_service_integration.h │ │ ├── psa_crypto_slot_management.c │ │ ├── psa_crypto_slot_management.h │ │ ├── psa_crypto_storage.c │ │ ├── psa_crypto_storage.h │ │ ├── psa_its_file.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── rsa_internal.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_cli.c │ │ ├── ssl_cookie.c │ │ ├── ssl_debug_helpers_generated.c │ │ ├── ssl_invasive.h │ │ ├── ssl_msg.c │ │ ├── ssl_srv.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── ssl_tls13_keys.c │ │ ├── ssl_tls13_keys.h │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ └── xtea.c │ ├── programs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── aes │ │ │ ├── CMakeLists.txt │ │ │ ├── aescrypt2.c │ │ │ └── crypt_and_hash.c │ │ ├── fuzz │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── corpuses │ │ │ │ ├── client │ │ │ │ ├── dtlsclient │ │ │ │ ├── dtlsserver │ │ │ │ └── server │ │ │ ├── fuzz_client.c │ │ │ ├── fuzz_client.options │ │ │ ├── fuzz_dtlsclient.c │ │ │ ├── fuzz_dtlsclient.options │ │ │ ├── fuzz_dtlsserver.c │ │ │ ├── fuzz_dtlsserver.options │ │ │ ├── fuzz_privkey.c │ │ │ ├── fuzz_privkey.options │ │ │ ├── fuzz_pubkey.c │ │ │ ├── fuzz_pubkey.options │ │ │ ├── fuzz_server.c │ │ │ ├── fuzz_server.options │ │ │ ├── fuzz_x509crl.c │ │ │ ├── fuzz_x509crl.options │ │ │ ├── fuzz_x509crt.c │ │ │ ├── fuzz_x509crt.options │ │ │ ├── fuzz_x509csr.c │ │ │ ├── fuzz_x509csr.options │ │ │ └── onefile.c │ │ ├── hash │ │ │ ├── CMakeLists.txt │ │ │ ├── generic_sum.c │ │ │ └── hello.c │ │ ├── pkey │ │ │ ├── CMakeLists.txt │ │ │ ├── dh_client.c │ │ │ ├── dh_genprime.c │ │ │ ├── dh_prime.txt │ │ │ ├── dh_server.c │ │ │ ├── ecdh_curve25519.c │ │ │ ├── ecdsa.c │ │ │ ├── gen_key.c │ │ │ ├── key_app.c │ │ │ ├── key_app_writer.c │ │ │ ├── mpi_demo.c │ │ │ ├── pk_decrypt.c │ │ │ ├── pk_encrypt.c │ │ │ ├── pk_sign.c │ │ │ ├── pk_verify.c │ │ │ ├── rsa_decrypt.c │ │ │ ├── rsa_encrypt.c │ │ │ ├── rsa_genkey.c │ │ │ ├── rsa_priv.txt │ │ │ ├── rsa_pub.txt │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_sign_pss.c │ │ │ ├── rsa_verify.c │ │ │ └── rsa_verify_pss.c │ │ ├── psa │ │ │ ├── CMakeLists.txt │ │ │ ├── crypto_examples.c │ │ │ ├── key_ladder_demo.c │ │ │ ├── key_ladder_demo.sh │ │ │ ├── psa_constant_names.c │ │ │ └── psa_constant_names_generated.c │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_entropy.c │ │ │ ├── gen_random_ctr_drbg.c │ │ │ └── gen_random_havege.c │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ ├── dtls_client.c │ │ │ ├── dtls_server.c │ │ │ ├── mini_client.c │ │ │ ├── ssl_client1.c │ │ │ ├── ssl_client2.c │ │ │ ├── ssl_context_info.c │ │ │ ├── ssl_fork_server.c │ │ │ ├── ssl_mail_client.c │ │ │ ├── ssl_pthread_server.c │ │ │ ├── ssl_server.c │ │ │ ├── ssl_server2.c │ │ │ ├── ssl_test_common_source.c │ │ │ ├── ssl_test_lib.c │ │ │ └── ssl_test_lib.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark.c │ │ │ ├── cmake_subproject │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cmake_subproject.c │ │ │ ├── cpp_dummy_build.cpp │ │ │ ├── query_compile_time_config.c │ │ │ ├── query_config.c │ │ │ ├── query_config.h │ │ │ ├── selftest.c │ │ │ ├── udp_proxy.c │ │ │ ├── udp_proxy_wrapper.sh │ │ │ └── zeroize.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── pem2der.c │ │ │ └── strerror.c │ │ ├── wince_main.c │ │ └── x509 │ │ │ ├── CMakeLists.txt │ │ │ ├── cert_app.c │ │ │ ├── cert_req.c │ │ │ ├── cert_write.c │ │ │ ├── crl_app.c │ │ │ ├── load_roots │ │ │ └── req_app.c │ ├── scripts │ │ ├── abi_check.py │ │ ├── apidoc_full.sh │ │ ├── assemble_changelog.py │ │ ├── bump_version.sh │ │ ├── config.pl │ │ ├── config.py │ │ ├── data_files │ │ │ ├── error.fmt │ │ │ ├── query_config.fmt │ │ │ ├── rename-1.3-2.0.txt │ │ │ ├── version_features.fmt │ │ │ ├── vs2010-app-template.vcxproj │ │ │ ├── vs2010-main-template.vcxproj │ │ │ ├── vs2010-sln-template.sln │ │ │ ├── vs6-app-template.dsp │ │ │ ├── vs6-main-template.dsp │ │ │ └── vs6-workspace-template.dsw │ │ ├── ecc-heap.sh │ │ ├── find-mem-leak.cocci │ │ ├── footprint.sh │ │ ├── generate_errors.pl │ │ ├── generate_features.pl │ │ ├── generate_psa_constants.py │ │ ├── generate_query_config.pl │ │ ├── generate_visualc_files.pl │ │ ├── massif_max.pl │ │ ├── mbedtls_dev │ │ │ ├── asymmetric_key_data.py │ │ │ ├── c_build_helper.py │ │ │ ├── crypto_knowledge.py │ │ │ ├── macro_collector.py │ │ │ ├── test_case.py │ │ │ └── typing_util.py │ │ ├── memory.sh │ │ ├── output_env.sh │ │ ├── rename.pl │ │ ├── rm-calloc-cast.cocci │ │ ├── tmp_ignore_makefiles.sh │ │ └── windows_msbuild.bat │ ├── tests │ │ ├── .gitignore │ │ ├── .jenkins │ │ │ └── Jenkinsfile │ │ ├── CMakeLists.txt │ │ ├── Descriptions.txt │ │ ├── Makefile │ │ ├── compat-in-docker.sh │ │ ├── compat.sh │ │ ├── configs │ │ │ └── config-wrapper-malloc-0-null.h │ │ ├── context-info.sh │ │ ├── data_files │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Readme-x509.txt │ │ │ ├── base64 │ │ │ │ ├── cli_cid.txt │ │ │ │ ├── cli_ciphersuite.txt │ │ │ │ ├── cli_def.txt │ │ │ │ ├── cli_min_cfg.txt │ │ │ │ ├── cli_no_alpn.txt │ │ │ │ ├── cli_no_keep_cert.txt │ │ │ │ ├── cli_no_mfl.txt │ │ │ │ ├── cli_no_packing.txt │ │ │ │ ├── def_b64_ff.bin │ │ │ │ ├── def_b64_too_big_1.txt │ │ │ │ ├── def_b64_too_big_2.txt │ │ │ │ ├── def_b64_too_big_3.txt │ │ │ │ ├── def_bad_b64.txt │ │ │ │ ├── empty.txt │ │ │ │ ├── mfl_1024.txt │ │ │ │ ├── mtu_10000.txt │ │ │ │ ├── srv_cid.txt │ │ │ │ ├── srv_ciphersuite.txt │ │ │ │ ├── srv_def.txt │ │ │ │ ├── srv_min_cfg.txt │ │ │ │ ├── srv_no_alpn.txt │ │ │ │ ├── srv_no_keep_cert.txt │ │ │ │ ├── srv_no_mfl.txt │ │ │ │ ├── srv_no_packing.txt │ │ │ │ └── v2.19.1.txt │ │ │ ├── bitstring-in-dn.pem │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md2.csr │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md4.csr │ │ │ ├── cert_md5.crt │ │ │ ├── cert_md5.csr │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── cert_v1_with_ext.crt │ │ │ ├── cli-rsa-sha1.crt │ │ │ ├── cli-rsa-sha256-badalg.crt.der │ │ │ ├── cli-rsa-sha256.crt │ │ │ ├── cli-rsa-sha256.crt.der │ │ │ ├── cli-rsa-sha256.key.der │ │ │ ├── cli-rsa.key │ │ │ ├── cli-rsa.key.der │ │ │ ├── cli.opensslconf │ │ │ ├── cli2.crt │ │ │ ├── cli2.crt.der │ │ │ ├── cli2.key │ │ │ ├── cli2.key.der │ │ │ ├── crl-ec-sha1.pem │ │ │ ├── crl-ec-sha224.pem │ │ │ ├── crl-ec-sha256.pem │ │ │ ├── crl-ec-sha384.pem │ │ │ ├── crl-ec-sha512.pem │ │ │ ├── crl-future.pem │ │ │ ├── crl-futureRevocationDate.pem │ │ │ ├── crl-idp.pem │ │ │ ├── crl-idpnc.pem │ │ │ ├── crl-malformed-trailing-spaces.pem │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ ├── crl.pem │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_md2.pem │ │ │ ├── crl_md4.pem │ │ │ ├── crl_md5.pem │ │ │ ├── crl_sha1.pem │ │ │ ├── crl_sha224.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crl_sha384.pem │ │ │ ├── crl_sha512.pem │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ ├── dh.1000.pem │ │ │ ├── dh.optlen.pem │ │ │ ├── dhparams.pem │ │ │ ├── dir-maxpath │ │ │ │ ├── 00.crt │ │ │ │ ├── 00.key │ │ │ │ ├── 01.crt │ │ │ │ ├── 01.key │ │ │ │ ├── 02.crt │ │ │ │ ├── 02.key │ │ │ │ ├── 03.crt │ │ │ │ ├── 03.key │ │ │ │ ├── 04.crt │ │ │ │ ├── 04.key │ │ │ │ ├── 05.crt │ │ │ │ ├── 05.key │ │ │ │ ├── 06.crt │ │ │ │ ├── 06.key │ │ │ │ ├── 07.crt │ │ │ │ ├── 07.key │ │ │ │ ├── 08.crt │ │ │ │ ├── 08.key │ │ │ │ ├── 09.crt │ │ │ │ ├── 09.key │ │ │ │ ├── 10.crt │ │ │ │ ├── 10.key │ │ │ │ ├── 11.crt │ │ │ │ ├── 11.key │ │ │ │ ├── 12.crt │ │ │ │ ├── 12.key │ │ │ │ ├── 13.crt │ │ │ │ ├── 13.key │ │ │ │ ├── 14.crt │ │ │ │ ├── 14.key │ │ │ │ ├── 15.crt │ │ │ │ ├── 15.key │ │ │ │ ├── 16.crt │ │ │ │ ├── 16.key │ │ │ │ ├── 17.crt │ │ │ │ ├── 17.key │ │ │ │ ├── 18.crt │ │ │ │ ├── 18.key │ │ │ │ ├── 19.crt │ │ │ │ ├── 19.key │ │ │ │ ├── 20.crt │ │ │ │ ├── 20.key │ │ │ │ ├── Readme.txt │ │ │ │ ├── c00.pem │ │ │ │ ├── c01.pem │ │ │ │ ├── c02.pem │ │ │ │ ├── c03.pem │ │ │ │ ├── c04.pem │ │ │ │ ├── c05.pem │ │ │ │ ├── c06.pem │ │ │ │ ├── c07.pem │ │ │ │ ├── c08.pem │ │ │ │ ├── c09.pem │ │ │ │ ├── c10.pem │ │ │ │ ├── c11.pem │ │ │ │ ├── c12.pem │ │ │ │ ├── c13.pem │ │ │ │ ├── c14.pem │ │ │ │ ├── c15.pem │ │ │ │ ├── c16.pem │ │ │ │ ├── c17.pem │ │ │ │ ├── c18.pem │ │ │ │ ├── c19.pem │ │ │ │ ├── c20.pem │ │ │ │ ├── int.opensslconf │ │ │ │ └── long.sh │ │ │ ├── dir1 │ │ │ │ └── test-ca.crt │ │ │ ├── dir2 │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir3 │ │ │ │ ├── Readme │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir4 │ │ │ │ ├── Readme │ │ │ │ ├── cert11.crt │ │ │ │ ├── cert12.crt │ │ │ │ ├── cert13.crt │ │ │ │ ├── cert14.crt │ │ │ │ ├── cert21.crt │ │ │ │ ├── cert22.crt │ │ │ │ ├── cert23.crt │ │ │ │ ├── cert31.crt │ │ │ │ ├── cert32.crt │ │ │ │ ├── cert33.crt │ │ │ │ ├── cert34.crt │ │ │ │ ├── cert41.crt │ │ │ │ ├── cert42.crt │ │ │ │ ├── cert43.crt │ │ │ │ ├── cert44.crt │ │ │ │ ├── cert45.crt │ │ │ │ ├── cert51.crt │ │ │ │ ├── cert52.crt │ │ │ │ ├── cert53.crt │ │ │ │ ├── cert54.crt │ │ │ │ ├── cert61.crt │ │ │ │ ├── cert62.crt │ │ │ │ ├── cert63.crt │ │ │ │ ├── cert71.crt │ │ │ │ ├── cert72.crt │ │ │ │ ├── cert73.crt │ │ │ │ ├── cert74.crt │ │ │ │ ├── cert81.crt │ │ │ │ ├── cert82.crt │ │ │ │ ├── cert83.crt │ │ │ │ ├── cert91.crt │ │ │ │ └── cert92.crt │ │ │ ├── ec_224_prv.pem │ │ │ ├── ec_224_pub.pem │ │ │ ├── ec_256_long_prv.pem │ │ │ ├── ec_256_prv.pem │ │ │ ├── ec_256_pub.pem │ │ │ ├── ec_384_prv.pem │ │ │ ├── ec_384_pub.pem │ │ │ ├── ec_521_prv.pem │ │ │ ├── ec_521_pub.pem │ │ │ ├── ec_521_short_prv.pem │ │ │ ├── ec_bp256_prv.pem │ │ │ ├── ec_bp256_pub.pem │ │ │ ├── ec_bp384_prv.pem │ │ │ ├── ec_bp384_pub.pem │ │ │ ├── ec_bp512_prv.pem │ │ │ ├── ec_bp512_pub.pem │ │ │ ├── ec_prv.pk8.der │ │ │ ├── ec_prv.pk8.pem │ │ │ ├── ec_prv.pk8.pw.der │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ ├── ec_prv.pk8nopub.der │ │ │ ├── ec_prv.pk8nopub.pem │ │ │ ├── ec_prv.pk8nopubparam.der │ │ │ ├── ec_prv.pk8nopubparam.pem │ │ │ ├── ec_prv.pk8param.der │ │ │ ├── ec_prv.pk8param.pem │ │ │ ├── ec_prv.sec1.der │ │ │ ├── ec_prv.sec1.pem │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ ├── ec_prv.specdom.der │ │ │ ├── ec_pub.der │ │ │ ├── ec_pub.pem │ │ │ ├── enco-ca-prstr.pem │ │ │ ├── enco-cert-utf8str.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── hash_file_5 │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ ├── mpi_10 │ │ │ ├── mpi_too_big │ │ │ ├── multiple_san.crt │ │ │ ├── non-ascii-string-in-issuer.crt │ │ │ ├── passwd.psk │ │ │ ├── print_c.pl │ │ │ ├── rsa4096_prv.pem │ │ │ ├── rsa4096_pub.pem │ │ │ ├── rsa512.key │ │ │ ├── rsa521.key │ │ │ ├── rsa522.key │ │ │ ├── rsa528.key │ │ │ ├── rsa_pkcs1_1024_3des.pem │ │ │ ├── rsa_pkcs1_1024_aes128.pem │ │ │ ├── rsa_pkcs1_1024_aes192.pem │ │ │ ├── rsa_pkcs1_1024_aes256.pem │ │ │ ├── rsa_pkcs1_1024_clear.pem │ │ │ ├── rsa_pkcs1_1024_des.pem │ │ │ ├── rsa_pkcs1_2048_3des.pem │ │ │ ├── rsa_pkcs1_2048_aes128.pem │ │ │ ├── rsa_pkcs1_2048_aes192.pem │ │ │ ├── rsa_pkcs1_2048_aes256.pem │ │ │ ├── rsa_pkcs1_2048_clear.pem │ │ │ ├── rsa_pkcs1_2048_des.pem │ │ │ ├── rsa_pkcs1_2048_public.der │ │ │ ├── rsa_pkcs1_2048_public.pem │ │ │ ├── rsa_pkcs1_4096_3des.pem │ │ │ ├── rsa_pkcs1_4096_aes128.pem │ │ │ ├── rsa_pkcs1_4096_aes192.pem │ │ │ ├── rsa_pkcs1_4096_aes256.pem │ │ │ ├── rsa_pkcs1_4096_clear.pem │ │ │ ├── rsa_pkcs1_4096_des.pem │ │ │ ├── rsa_pkcs8_1024_public.der │ │ │ ├── rsa_pkcs8_2048_public.der │ │ │ ├── rsa_pkcs8_2048_public.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem │ │ │ ├── server1-ms.req.sha256 │ │ │ ├── server1-nospace.crt │ │ │ ├── server1-v1.crt │ │ │ ├── server1.ca.crt │ │ │ ├── server1.ca.der │ │ │ ├── server1.ca_noauthid.crt │ │ │ ├── server1.cert_type.crt │ │ │ ├── server1.cert_type.crt.openssl.v3_ext │ │ │ ├── server1.cert_type_noauthid.crt │ │ │ ├── server1.crt │ │ │ ├── server1.crt.der │ │ │ ├── server1.crt.openssl.v3_ext │ │ │ ├── server1.csr │ │ │ ├── server1.der │ │ │ ├── server1.ext_ku.crt │ │ │ ├── server1.key │ │ │ ├── server1.key_usage.crt │ │ │ ├── server1.key_usage.crt.openssl.v3_ext │ │ │ ├── server1.key_usage_noauthid.crt │ │ │ ├── server1.noauthid.crt │ │ │ ├── server1.pubkey │ │ │ ├── server1.req.cert_type │ │ │ ├── server1.req.cert_type_empty │ │ │ ├── server1.req.key_usage │ │ │ ├── server1.req.key_usage_empty │ │ │ ├── server1.req.ku-ct │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server1.v1.crt │ │ │ ├── server10-badsign.crt │ │ │ ├── server10-bs_int3.pem │ │ │ ├── server10.crt │ │ │ ├── server10.key │ │ │ ├── server10_int3-bs.pem │ │ │ ├── server10_int3_int-ca2.crt │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ ├── server10_int3_spurious_int-ca2.crt │ │ │ ├── server1_ca.crt │ │ │ ├── server1_csr.opensslconf │ │ │ ├── server1_pathlen_int_max-1.crt │ │ │ ├── server1_pathlen_int_max.crt │ │ │ ├── server2-badsign.crt │ │ │ ├── server2-sha256.crt │ │ │ ├── server2-sha256.crt.der │ │ │ ├── server2-v1-chain.crt │ │ │ ├── server2-v1.crt │ │ │ ├── server2.crt │ │ │ ├── server2.crt.der │ │ │ ├── server2.der │ │ │ ├── server2.key │ │ │ ├── server2.key.der │ │ │ ├── server2.key.enc │ │ │ ├── server2.ku-ds.crt │ │ │ ├── server2.ku-ds_ke.crt │ │ │ ├── server2.ku-ka.crt │ │ │ ├── server2.ku-ke.crt │ │ │ ├── server3.crt │ │ │ ├── server3.key │ │ │ ├── server4.crt │ │ │ ├── server4.key │ │ │ ├── server5-badsign.crt │ │ │ ├── server5-der0.crt │ │ │ ├── server5-der1a.crt │ │ │ ├── server5-der1b.crt │ │ │ ├── server5-der2.crt │ │ │ ├── server5-der4.crt │ │ │ ├── server5-der8.crt │ │ │ ├── server5-der9.crt │ │ │ ├── server5-expired.crt │ │ │ ├── server5-fan.crt │ │ │ ├── server5-future.crt │ │ │ ├── server5-othername.crt │ │ │ ├── server5-selfsigned.crt │ │ │ ├── server5-sha1.crt │ │ │ ├── server5-sha224.crt │ │ │ ├── server5-sha384.crt │ │ │ ├── server5-sha512.crt │ │ │ ├── server5-ss-expired.crt │ │ │ ├── server5-ss-forgeca.crt │ │ │ ├── server5-tricky-ip-san.crt │ │ │ ├── server5-unsupported_othername.crt │ │ │ ├── server5.crt │ │ │ ├── server5.crt.der │ │ │ ├── server5.eku-cli.crt │ │ │ ├── server5.eku-cs.crt │ │ │ ├── server5.eku-cs_any.crt │ │ │ ├── server5.eku-srv.crt │ │ │ ├── server5.eku-srv_cli.crt │ │ │ ├── server5.key │ │ │ ├── server5.key.der │ │ │ ├── server5.key.enc │ │ │ ├── server5.ku-ds.crt │ │ │ ├── server5.ku-ka.crt │ │ │ ├── server5.ku-ke.crt │ │ │ ├── server5.req.ku.sha1 │ │ │ ├── server5.req.sha1 │ │ │ ├── server5.req.sha224 │ │ │ ├── server5.req.sha256 │ │ │ ├── server5.req.sha384 │ │ │ ├── server5.req.sha512 │ │ │ ├── server6-ss-child.crt │ │ │ ├── server6.crt │ │ │ ├── server6.key │ │ │ ├── server7-badsign.crt │ │ │ ├── server7-expired.crt │ │ │ ├── server7-future.crt │ │ │ ├── server7.crt │ │ │ ├── server7.key │ │ │ ├── server7_all_space.crt │ │ │ ├── server7_int-ca-exp.crt │ │ │ ├── server7_int-ca.crt │ │ │ ├── server7_int-ca_ca2.crt │ │ │ ├── server7_pem_space.crt │ │ │ ├── server7_spurious_int-ca.crt │ │ │ ├── server7_trailing_space.crt │ │ │ ├── server8.crt │ │ │ ├── server8.key │ │ │ ├── server8_int-ca2.crt │ │ │ ├── server9-bad-mgfhash.crt │ │ │ ├── server9-bad-saltlen.crt │ │ │ ├── server9-badsign.crt │ │ │ ├── server9-defaults.crt │ │ │ ├── server9-sha224.crt │ │ │ ├── server9-sha256.crt │ │ │ ├── server9-sha384.crt │ │ │ ├── server9-sha512.crt │ │ │ ├── server9-with-ca.crt │ │ │ ├── server9.crt │ │ │ ├── server9.key │ │ │ ├── server9.req.sha1 │ │ │ ├── server9.req.sha224 │ │ │ ├── server9.req.sha256 │ │ │ ├── server9.req.sha384 │ │ │ ├── server9.req.sha512 │ │ │ ├── test-ca-alt-good.crt │ │ │ ├── test-ca-alt.crt │ │ │ ├── test-ca-alt.csr │ │ │ ├── test-ca-alt.key │ │ │ ├── test-ca-any_policy.crt │ │ │ ├── test-ca-any_policy_ec.crt │ │ │ ├── test-ca-any_policy_with_qualifier.crt │ │ │ ├── test-ca-any_policy_with_qualifier_ec.crt │ │ │ ├── test-ca-good-alt.crt │ │ │ ├── test-ca-multi_policy.crt │ │ │ ├── test-ca-multi_policy_ec.crt │ │ │ ├── test-ca-sha1.crt │ │ │ ├── test-ca-sha1.crt.der │ │ │ ├── test-ca-sha256.crt │ │ │ ├── test-ca-sha256.crt.der │ │ │ ├── test-ca-unsupported_policy.crt │ │ │ ├── test-ca-unsupported_policy_ec.crt │ │ │ ├── test-ca-v1.crt │ │ │ ├── test-ca.crt │ │ │ ├── test-ca.crt.der │ │ │ ├── test-ca.der │ │ │ ├── test-ca.key │ │ │ ├── test-ca.key.der │ │ │ ├── test-ca.opensslconf │ │ │ ├── test-ca.server1.db │ │ │ ├── test-ca.server1.future-crl.db │ │ │ ├── test-ca.server1.future-crl.opensslconf │ │ │ ├── test-ca.server1.opensslconf │ │ │ ├── test-ca2-expired.crt │ │ │ ├── test-ca2.crt │ │ │ ├── test-ca2.crt.der │ │ │ ├── test-ca2.key │ │ │ ├── test-ca2.key.der │ │ │ ├── test-ca2.key.enc │ │ │ ├── test-ca2.ku-crl.crt │ │ │ ├── test-ca2.ku-crt.crt │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ ├── test-ca2.ku-ds.crt │ │ │ ├── test-ca2_cat-future-invalid.crt │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ ├── test-ca2_cat-past-invalid.crt │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ ├── test-ca_cat12.crt │ │ │ ├── test-ca_cat21.crt │ │ │ ├── test-ca_printable.crt │ │ │ ├── test-ca_uppercase.crt │ │ │ ├── test-ca_utf8.crt │ │ │ ├── test-int-ca-exp.crt │ │ │ ├── test-int-ca.crt │ │ │ ├── test-int-ca.key │ │ │ ├── test-int-ca2.crt │ │ │ ├── test-int-ca2.key │ │ │ ├── test-int-ca3-badsign.crt │ │ │ ├── test-int-ca3.crt │ │ │ └── test-int-ca3.key │ │ ├── docker │ │ │ └── bionic │ │ │ │ └── Dockerfile │ │ ├── git-scripts │ │ │ ├── README.md │ │ │ ├── pre-commit.sh │ │ │ └── pre-push.sh │ │ ├── include │ │ │ └── test │ │ │ │ ├── asn1_helpers.h │ │ │ │ ├── constant_flow.h │ │ │ │ ├── drivers │ │ │ │ ├── cipher.h │ │ │ │ ├── key_management.h │ │ │ │ ├── signature.h │ │ │ │ ├── size.h │ │ │ │ └── test_driver.h │ │ │ │ ├── fake_external_rng_for_test.h │ │ │ │ ├── helpers.h │ │ │ │ ├── macros.h │ │ │ │ ├── psa_crypto_helpers.h │ │ │ │ ├── psa_exercise_key.h │ │ │ │ ├── psa_helpers.h │ │ │ │ └── random.h │ │ ├── make-in-docker.sh │ │ ├── scripts │ │ │ ├── all-in-docker.sh │ │ │ ├── all.sh │ │ │ ├── analyze_outcomes.py │ │ │ ├── basic-build-test.sh │ │ │ ├── basic-in-docker.sh │ │ │ ├── check-doxy-blocks.pl │ │ │ ├── check-generated-files.sh │ │ │ ├── check-names.sh │ │ │ ├── check-python-files.sh │ │ │ ├── check_files.py │ │ │ ├── check_test_cases.py │ │ │ ├── curves.pl │ │ │ ├── depends-hashes.pl │ │ │ ├── depends-pkalgs.pl │ │ │ ├── docker_env.sh │ │ │ ├── doxygen.sh │ │ │ ├── gen_ctr_drbg.pl │ │ │ ├── gen_gcm_decrypt.pl │ │ │ ├── gen_gcm_encrypt.pl │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ ├── generate-afl-tests.sh │ │ │ ├── generate_psa_tests.py │ │ │ ├── generate_test_code.py │ │ │ ├── key-exchanges.pl │ │ │ ├── list-enum-consts.pl │ │ │ ├── list-identifiers.sh │ │ │ ├── list-macros.sh │ │ │ ├── list-symbols.sh │ │ │ ├── mbedtls_test.py │ │ │ ├── psa_collect_statuses.py │ │ │ ├── recursion.pl │ │ │ ├── run-test-suites.pl │ │ │ ├── scripts_path.py │ │ │ ├── set_psa_test_dependencies.py │ │ │ ├── tcp_client.pl │ │ │ ├── test-ref-configs.pl │ │ │ ├── test_config_script.py │ │ │ ├── test_generate_test_code.py │ │ │ ├── test_psa_constant_names.py │ │ │ ├── test_zeroize.gdb │ │ │ └── travis-log-failure.sh │ │ ├── src │ │ │ ├── asn1_helpers.c │ │ │ ├── drivers │ │ │ │ ├── cipher.c │ │ │ │ ├── key_management.c │ │ │ │ ├── signature.c │ │ │ │ └── size.c │ │ │ ├── fake_external_rng_for_test.c │ │ │ ├── helpers.c │ │ │ ├── psa_crypto_helpers.c │ │ │ ├── psa_exercise_key.c │ │ │ ├── random.c │ │ │ └── threading_helpers.c │ │ ├── ssl-opt-in-docker.sh │ │ ├── ssl-opt.sh │ │ └── suites │ │ │ ├── helpers.function │ │ │ ├── host_test.function │ │ │ ├── main_test.function │ │ │ ├── target_test.function │ │ │ ├── test_suite_aes.cbc.data │ │ │ ├── test_suite_aes.cfb.data │ │ │ ├── test_suite_aes.ecb.data │ │ │ ├── test_suite_aes.function │ │ │ ├── test_suite_aes.ofb.data │ │ │ ├── test_suite_aes.rest.data │ │ │ ├── test_suite_aes.xts.data │ │ │ ├── test_suite_arc4.data │ │ │ ├── test_suite_arc4.function │ │ │ ├── test_suite_aria.data │ │ │ ├── test_suite_aria.function │ │ │ ├── test_suite_asn1parse.data │ │ │ ├── test_suite_asn1parse.function │ │ │ ├── test_suite_asn1write.data │ │ │ ├── test_suite_asn1write.function │ │ │ ├── test_suite_base64.data │ │ │ ├── test_suite_base64.function │ │ │ ├── test_suite_blowfish.data │ │ │ ├── test_suite_blowfish.function │ │ │ ├── test_suite_camellia.data │ │ │ ├── test_suite_camellia.function │ │ │ ├── test_suite_ccm.data │ │ │ ├── test_suite_ccm.function │ │ │ ├── test_suite_chacha20.data │ │ │ ├── test_suite_chacha20.function │ │ │ ├── test_suite_chachapoly.data │ │ │ ├── test_suite_chachapoly.function │ │ │ ├── test_suite_cipher.aes.data │ │ │ ├── test_suite_cipher.arc4.data │ │ │ ├── test_suite_cipher.aria.data │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ ├── test_suite_cipher.camellia.data │ │ │ ├── test_suite_cipher.ccm.data │ │ │ ├── test_suite_cipher.chacha20.data │ │ │ ├── test_suite_cipher.chachapoly.data │ │ │ ├── test_suite_cipher.des.data │ │ │ ├── test_suite_cipher.function │ │ │ ├── test_suite_cipher.gcm.data │ │ │ ├── test_suite_cipher.misc.data │ │ │ ├── test_suite_cipher.nist_kw.data │ │ │ ├── test_suite_cipher.null.data │ │ │ ├── test_suite_cipher.padding.data │ │ │ ├── test_suite_cmac.data │ │ │ ├── test_suite_cmac.function │ │ │ ├── test_suite_ctr_drbg.data │ │ │ ├── test_suite_ctr_drbg.function │ │ │ ├── test_suite_debug.data │ │ │ ├── test_suite_debug.function │ │ │ ├── test_suite_des.data │ │ │ ├── test_suite_des.function │ │ │ ├── test_suite_dhm.data │ │ │ ├── test_suite_dhm.function │ │ │ ├── test_suite_ecdh.data │ │ │ ├── test_suite_ecdh.function │ │ │ ├── test_suite_ecdsa.data │ │ │ ├── test_suite_ecdsa.function │ │ │ ├── test_suite_ecjpake.data │ │ │ ├── test_suite_ecjpake.function │ │ │ ├── test_suite_ecp.data │ │ │ ├── test_suite_ecp.function │ │ │ ├── test_suite_entropy.data │ │ │ ├── test_suite_entropy.function │ │ │ ├── test_suite_error.data │ │ │ ├── test_suite_error.function │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ ├── test_suite_gcm.camellia.data │ │ │ ├── test_suite_gcm.function │ │ │ ├── test_suite_gcm.misc.data │ │ │ ├── test_suite_hkdf.data │ │ │ ├── test_suite_hkdf.function │ │ │ ├── test_suite_hmac_drbg.function │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ ├── test_suite_md.data │ │ │ ├── test_suite_md.function │ │ │ ├── test_suite_mdx.data │ │ │ ├── test_suite_mdx.function │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ ├── test_suite_mpi.data │ │ │ ├── test_suite_mpi.function │ │ │ ├── test_suite_net.data │ │ │ ├── test_suite_net.function │ │ │ ├── test_suite_nist_kw.data │ │ │ ├── test_suite_nist_kw.function │ │ │ ├── test_suite_oid.data │ │ │ ├── test_suite_oid.function │ │ │ ├── test_suite_pem.data │ │ │ ├── test_suite_pem.function │ │ │ ├── test_suite_pk.data │ │ │ ├── test_suite_pk.function │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ ├── test_suite_pkcs5.data │ │ │ ├── test_suite_pkcs5.function │ │ │ ├── test_suite_pkparse.data │ │ │ ├── test_suite_pkparse.function │ │ │ ├── test_suite_pkwrite.data │ │ │ ├── test_suite_pkwrite.function │ │ │ ├── test_suite_poly1305.data │ │ │ ├── test_suite_poly1305.function │ │ │ ├── test_suite_psa_crypto.data │ │ │ ├── test_suite_psa_crypto.function │ │ │ ├── test_suite_psa_crypto_attributes.data │ │ │ ├── test_suite_psa_crypto_attributes.function │ │ │ ├── test_suite_psa_crypto_driver_wrappers.data │ │ │ ├── test_suite_psa_crypto_driver_wrappers.function │ │ │ ├── test_suite_psa_crypto_entropy.data │ │ │ ├── test_suite_psa_crypto_entropy.function │ │ │ ├── test_suite_psa_crypto_generate_key.generated.data │ │ │ ├── test_suite_psa_crypto_hash.data │ │ │ ├── test_suite_psa_crypto_hash.function │ │ │ ├── test_suite_psa_crypto_init.data │ │ │ ├── test_suite_psa_crypto_init.function │ │ │ ├── test_suite_psa_crypto_metadata.data │ │ │ ├── test_suite_psa_crypto_metadata.function │ │ │ ├── test_suite_psa_crypto_not_supported.function │ │ │ ├── test_suite_psa_crypto_not_supported.generated.data │ │ │ ├── test_suite_psa_crypto_not_supported.misc.data │ │ │ ├── test_suite_psa_crypto_persistent_key.data │ │ │ ├── test_suite_psa_crypto_persistent_key.function │ │ │ ├── test_suite_psa_crypto_se_driver_hal.data │ │ │ ├── test_suite_psa_crypto_se_driver_hal.function │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.data │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.function │ │ │ ├── test_suite_psa_crypto_slot_management.data │ │ │ ├── test_suite_psa_crypto_slot_management.function │ │ │ ├── test_suite_psa_crypto_storage_format.current.data │ │ │ ├── test_suite_psa_crypto_storage_format.v0.data │ │ │ ├── test_suite_psa_its.data │ │ │ ├── test_suite_psa_its.function │ │ │ ├── test_suite_random.data │ │ │ ├── test_suite_random.function │ │ │ ├── test_suite_rsa.data │ │ │ ├── test_suite_rsa.function │ │ │ ├── test_suite_shax.data │ │ │ ├── test_suite_shax.function │ │ │ ├── test_suite_ssl.data │ │ │ ├── test_suite_ssl.function │ │ │ ├── test_suite_timing.data │ │ │ ├── test_suite_timing.function │ │ │ ├── test_suite_version.data │ │ │ ├── test_suite_version.function │ │ │ ├── test_suite_x509parse.data │ │ │ ├── test_suite_x509parse.function │ │ │ ├── test_suite_x509write.data │ │ │ ├── test_suite_x509write.function │ │ │ ├── test_suite_xtea.data │ │ │ └── test_suite_xtea.function │ └── visualc │ │ └── VS2010 │ │ ├── aescrypt2.vcxproj │ │ ├── benchmark.vcxproj │ │ ├── cert_app.vcxproj │ │ ├── cert_req.vcxproj │ │ ├── cert_write.vcxproj │ │ ├── crl_app.vcxproj │ │ ├── crypt_and_hash.vcxproj │ │ ├── crypto_examples.vcxproj │ │ ├── dh_client.vcxproj │ │ ├── dh_genprime.vcxproj │ │ ├── dh_server.vcxproj │ │ ├── dtls_client.vcxproj │ │ ├── dtls_server.vcxproj │ │ ├── ecdh_curve25519.vcxproj │ │ ├── ecdsa.vcxproj │ │ ├── gen_entropy.vcxproj │ │ ├── gen_key.vcxproj │ │ ├── gen_random_ctr_drbg.vcxproj │ │ ├── gen_random_havege.vcxproj │ │ ├── generic_sum.vcxproj │ │ ├── hello.vcxproj │ │ ├── key_app.vcxproj │ │ ├── key_app_writer.vcxproj │ │ ├── key_ladder_demo.vcxproj │ │ ├── mbedTLS.sln │ │ ├── mbedTLS.vcxproj │ │ ├── mini_client.vcxproj │ │ ├── mpi_demo.vcxproj │ │ ├── pem2der.vcxproj │ │ ├── pk_decrypt.vcxproj │ │ ├── pk_encrypt.vcxproj │ │ ├── pk_sign.vcxproj │ │ ├── pk_verify.vcxproj │ │ ├── psa_constant_names.vcxproj │ │ ├── query_compile_time_config.vcxproj │ │ ├── req_app.vcxproj │ │ ├── rsa_decrypt.vcxproj │ │ ├── rsa_encrypt.vcxproj │ │ ├── rsa_genkey.vcxproj │ │ ├── rsa_sign.vcxproj │ │ ├── rsa_sign_pss.vcxproj │ │ ├── rsa_verify.vcxproj │ │ ├── rsa_verify_pss.vcxproj │ │ ├── selftest.vcxproj │ │ ├── ssl_client1.vcxproj │ │ ├── ssl_client2.vcxproj │ │ ├── ssl_context_info.vcxproj │ │ ├── ssl_fork_server.vcxproj │ │ ├── ssl_mail_client.vcxproj │ │ ├── ssl_server.vcxproj │ │ ├── ssl_server2.vcxproj │ │ ├── strerror.vcxproj │ │ ├── udp_proxy.vcxproj │ │ └── zeroize.vcxproj ├── microprofile │ ├── README.md │ ├── microprofile.h │ ├── microprofile_html.h │ └── microprofileui.h ├── sirit │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── externals │ │ └── SPIRV-Headers │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── cmake │ │ │ └── Config.cmake.in │ │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ └── example.cpp │ │ │ ├── include │ │ │ └── spirv │ │ │ │ ├── 1.0 │ │ │ │ ├── GLSL.std.450.h │ │ │ │ ├── OpenCL.std.h │ │ │ │ ├── extinst.glsl.std.450.grammar.json │ │ │ │ ├── extinst.opencl.std.100.grammar.json │ │ │ │ ├── spirv.core.grammar.json │ │ │ │ ├── spirv.cs │ │ │ │ ├── spirv.h │ │ │ │ ├── spirv.hpp │ │ │ │ ├── spirv.hpp11 │ │ │ │ ├── spirv.json │ │ │ │ ├── spirv.lua │ │ │ │ └── spirv.py │ │ │ │ ├── 1.1 │ │ │ │ ├── GLSL.std.450.h │ │ │ │ ├── OpenCL.std.h │ │ │ │ ├── extinst.glsl.std.450.grammar.json │ │ │ │ ├── extinst.opencl.std.100.grammar.json │ │ │ │ ├── spirv.core.grammar.json │ │ │ │ ├── spirv.cs │ │ │ │ ├── spirv.h │ │ │ │ ├── spirv.hpp │ │ │ │ ├── spirv.hpp11 │ │ │ │ ├── spirv.json │ │ │ │ ├── spirv.lua │ │ │ │ └── spirv.py │ │ │ │ ├── 1.2 │ │ │ │ ├── GLSL.std.450.h │ │ │ │ ├── OpenCL.std.h │ │ │ │ ├── extinst.glsl.std.450.grammar.json │ │ │ │ ├── extinst.opencl.std.100.grammar.json │ │ │ │ ├── spirv.core.grammar.json │ │ │ │ ├── spirv.cs │ │ │ │ ├── spirv.h │ │ │ │ ├── spirv.hpp │ │ │ │ ├── spirv.hpp11 │ │ │ │ ├── spirv.json │ │ │ │ ├── spirv.lua │ │ │ │ └── spirv.py │ │ │ │ ├── spir-v.xml │ │ │ │ └── unified1 │ │ │ │ ├── AMD_gcn_shader.h │ │ │ │ ├── AMD_shader_ballot.h │ │ │ │ ├── AMD_shader_explicit_vertex_parameter.h │ │ │ │ ├── AMD_shader_trinary_minmax.h │ │ │ │ ├── DebugInfo.h │ │ │ │ ├── GLSL.std.450.h │ │ │ │ ├── NonSemanticClspvReflection.h │ │ │ │ ├── NonSemanticDebugPrintf.h │ │ │ │ ├── OpenCL.std.h │ │ │ │ ├── OpenCLDebugInfo100.h │ │ │ │ ├── extinst.debuginfo.grammar.json │ │ │ │ ├── extinst.glsl.std.450.grammar.json │ │ │ │ ├── extinst.nonsemantic.clspvreflection.grammar.json │ │ │ │ ├── extinst.nonsemantic.debugprintf.grammar.json │ │ │ │ ├── extinst.opencl.debuginfo.100.grammar.json │ │ │ │ ├── extinst.opencl.std.100.grammar.json │ │ │ │ ├── extinst.spv-amd-gcn-shader.grammar.json │ │ │ │ ├── extinst.spv-amd-shader-ballot.grammar.json │ │ │ │ ├── extinst.spv-amd-shader-explicit-vertex-parameter.grammar.json │ │ │ │ ├── extinst.spv-amd-shader-trinary-minmax.grammar.json │ │ │ │ ├── spirv.core.grammar.json │ │ │ │ ├── spirv.cs │ │ │ │ ├── spirv.h │ │ │ │ ├── spirv.hpp │ │ │ │ ├── spirv.hpp11 │ │ │ │ ├── spirv.json │ │ │ │ ├── spirv.lua │ │ │ │ ├── spirv.py │ │ │ │ └── spv.d │ │ │ └── tools │ │ │ └── buildHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ ├── generate_language_headers.py │ │ │ ├── makeExtinstHeaders.py │ │ │ └── makeHeaders │ │ │ ├── header.cpp │ │ │ ├── header.h │ │ │ ├── jsonToSpirv.cpp │ │ │ ├── jsonToSpirv.h │ │ │ ├── jsoncpp │ │ │ └── dist │ │ │ │ ├── json │ │ │ │ ├── json-forwards.h │ │ │ │ └── json.h │ │ │ │ └── jsoncpp.cpp │ │ │ └── main.cpp │ ├── include │ │ └── sirit │ │ │ └── sirit.h │ ├── src │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── common_types.h │ │ ├── instructions │ │ │ ├── annotation.cpp │ │ │ ├── arithmetic.cpp │ │ │ ├── atomic.cpp │ │ │ ├── barrier.cpp │ │ │ ├── bit.cpp │ │ │ ├── constant.cpp │ │ │ ├── conversion.cpp │ │ │ ├── debug.cpp │ │ │ ├── derivatives.cpp │ │ │ ├── extension.cpp │ │ │ ├── flow.cpp │ │ │ ├── function.cpp │ │ │ ├── group.cpp │ │ │ ├── image.cpp │ │ │ ├── logical.cpp │ │ │ ├── memory.cpp │ │ │ ├── misc.cpp │ │ │ └── type.cpp │ │ ├── sirit.cpp │ │ ├── stream.cpp │ │ └── stream.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── main.cpp └── soundtouch │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.md │ ├── include │ ├── BPMDetect.h │ ├── FIFOSampleBuffer.h │ ├── FIFOSamplePipe.h │ ├── STTypes.h │ ├── SoundTouch.h │ └── soundtouch_config.h │ └── src │ ├── AAFilter.cpp │ ├── AAFilter.h │ ├── BPMDetect.cpp │ ├── FIFOSampleBuffer.cpp │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── InterpolateCubic.cpp │ ├── InterpolateCubic.h │ ├── InterpolateLinear.cpp │ ├── InterpolateLinear.h │ ├── InterpolateShannon.cpp │ ├── InterpolateShannon.h │ ├── PeakFinder.cpp │ ├── PeakFinder.h │ ├── RateTransposer.cpp │ ├── RateTransposer.h │ ├── SoundTouch.cpp │ ├── TDStretch.cpp │ ├── TDStretch.h │ ├── cpu_detect.h │ ├── cpu_detect_x86.cpp │ ├── mmx_optimized.cpp │ └── sse_optimized.cpp ├── glad ├── Readme.md ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── src │ └── glad.c ├── hlaunch.c ├── horizon_servctl.h ├── input_common ├── analog_from_button.cpp ├── analog_from_button.h ├── gcadapter │ ├── gc_adapter.cpp │ ├── gc_adapter.h │ ├── gc_poller.cpp │ └── gc_poller.h ├── keyboard.cpp ├── keyboard.h ├── main.cpp ├── main.h ├── motion_from_button.cpp ├── motion_from_button.h ├── motion_input.cpp ├── motion_input.h ├── mouse │ ├── mouse_input.cpp │ ├── mouse_input.h │ ├── mouse_poller.cpp │ └── mouse_poller.h ├── sdl │ ├── sdl.cpp │ ├── sdl.h │ ├── sdl_impl.cpp │ └── sdl_impl.h ├── tas │ ├── tas_input.cpp │ ├── tas_input.h │ ├── tas_poller.cpp │ └── tas_poller.h ├── touch_from_button.cpp ├── touch_from_button.h └── udp │ ├── client.cpp │ ├── client.h │ ├── protocol.cpp │ ├── protocol.h │ ├── udp.cpp │ └── udp.h ├── license.txt ├── mizu.cpp ├── mizu.service ├── shader_recompiler ├── backend │ ├── bindings.h │ ├── glasm │ │ ├── emit_context.cpp │ │ ├── emit_context.h │ │ ├── emit_glasm.cpp │ │ ├── emit_glasm.h │ │ ├── emit_glasm_barriers.cpp │ │ ├── emit_glasm_bitwise_conversion.cpp │ │ ├── emit_glasm_composite.cpp │ │ ├── emit_glasm_context_get_set.cpp │ │ ├── emit_glasm_control_flow.cpp │ │ ├── emit_glasm_convert.cpp │ │ ├── emit_glasm_floating_point.cpp │ │ ├── emit_glasm_image.cpp │ │ ├── emit_glasm_instructions.h │ │ ├── emit_glasm_integer.cpp │ │ ├── emit_glasm_logical.cpp │ │ ├── emit_glasm_memory.cpp │ │ ├── emit_glasm_not_implemented.cpp │ │ ├── emit_glasm_select.cpp │ │ ├── emit_glasm_shared_memory.cpp │ │ ├── emit_glasm_special.cpp │ │ ├── emit_glasm_undefined.cpp │ │ ├── emit_glasm_warp.cpp │ │ ├── reg_alloc.cpp │ │ └── reg_alloc.h │ ├── glsl │ │ ├── emit_context.cpp │ │ ├── emit_context.h │ │ ├── emit_glsl.cpp │ │ ├── emit_glsl.h │ │ ├── emit_glsl_atomic.cpp │ │ ├── emit_glsl_barriers.cpp │ │ ├── emit_glsl_bitwise_conversion.cpp │ │ ├── emit_glsl_composite.cpp │ │ ├── emit_glsl_context_get_set.cpp │ │ ├── emit_glsl_control_flow.cpp │ │ ├── emit_glsl_convert.cpp │ │ ├── emit_glsl_floating_point.cpp │ │ ├── emit_glsl_image.cpp │ │ ├── emit_glsl_instructions.h │ │ ├── emit_glsl_integer.cpp │ │ ├── emit_glsl_logical.cpp │ │ ├── emit_glsl_memory.cpp │ │ ├── emit_glsl_not_implemented.cpp │ │ ├── emit_glsl_select.cpp │ │ ├── emit_glsl_shared_memory.cpp │ │ ├── emit_glsl_special.cpp │ │ ├── emit_glsl_undefined.cpp │ │ ├── emit_glsl_warp.cpp │ │ ├── var_alloc.cpp │ │ └── var_alloc.h │ └── spirv │ │ ├── emit_context.cpp │ │ ├── emit_context.h │ │ ├── emit_spirv.cpp │ │ ├── emit_spirv.h │ │ ├── emit_spirv_atomic.cpp │ │ ├── emit_spirv_barriers.cpp │ │ ├── emit_spirv_bitwise_conversion.cpp │ │ ├── emit_spirv_composite.cpp │ │ ├── emit_spirv_context_get_set.cpp │ │ ├── emit_spirv_control_flow.cpp │ │ ├── emit_spirv_convert.cpp │ │ ├── emit_spirv_floating_point.cpp │ │ ├── emit_spirv_image.cpp │ │ ├── emit_spirv_image_atomic.cpp │ │ ├── emit_spirv_instructions.h │ │ ├── emit_spirv_integer.cpp │ │ ├── emit_spirv_logical.cpp │ │ ├── emit_spirv_memory.cpp │ │ ├── emit_spirv_select.cpp │ │ ├── emit_spirv_shared_memory.cpp │ │ ├── emit_spirv_special.cpp │ │ ├── emit_spirv_undefined.cpp │ │ └── emit_spirv_warp.cpp ├── environment.h ├── exception.h ├── frontend │ ├── ir │ │ ├── abstract_syntax_list.h │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── basic_block.cpp │ │ ├── basic_block.h │ │ ├── breadth_first_search.h │ │ ├── condition.cpp │ │ ├── condition.h │ │ ├── flow_test.cpp │ │ ├── flow_test.h │ │ ├── ir_emitter.cpp │ │ ├── ir_emitter.h │ │ ├── microinstruction.cpp │ │ ├── modifiers.h │ │ ├── opcodes.cpp │ │ ├── opcodes.h │ │ ├── opcodes.inc │ │ ├── patch.cpp │ │ ├── patch.h │ │ ├── post_order.cpp │ │ ├── post_order.h │ │ ├── pred.h │ │ ├── program.cpp │ │ ├── program.h │ │ ├── reg.h │ │ ├── type.cpp │ │ ├── type.h │ │ ├── value.cpp │ │ └── value.h │ └── maxwell │ │ ├── control_flow.cpp │ │ ├── control_flow.h │ │ ├── decode.cpp │ │ ├── decode.h │ │ ├── indirect_branch_table_track.cpp │ │ ├── indirect_branch_table_track.h │ │ ├── instruction.h │ │ ├── location.h │ │ ├── maxwell.inc │ │ ├── opcodes.cpp │ │ ├── opcodes.h │ │ ├── structured_control_flow.cpp │ │ ├── structured_control_flow.h │ │ ├── translate │ │ ├── impl │ │ │ ├── atomic_operations_global_memory.cpp │ │ │ ├── atomic_operations_shared_memory.cpp │ │ │ ├── attribute_memory_to_physical.cpp │ │ │ ├── barrier_operations.cpp │ │ │ ├── bitfield_extract.cpp │ │ │ ├── bitfield_insert.cpp │ │ │ ├── branch_indirect.cpp │ │ │ ├── common_encoding.h │ │ │ ├── common_funcs.cpp │ │ │ ├── common_funcs.h │ │ │ ├── condition_code_set.cpp │ │ │ ├── double_add.cpp │ │ │ ├── double_compare_and_set.cpp │ │ │ ├── double_fused_multiply_add.cpp │ │ │ ├── double_min_max.cpp │ │ │ ├── double_multiply.cpp │ │ │ ├── double_set_predicate.cpp │ │ │ ├── exit_program.cpp │ │ │ ├── find_leading_one.cpp │ │ │ ├── floating_point_add.cpp │ │ │ ├── floating_point_compare.cpp │ │ │ ├── floating_point_compare_and_set.cpp │ │ │ ├── floating_point_conversion_floating_point.cpp │ │ │ ├── floating_point_conversion_integer.cpp │ │ │ ├── floating_point_fused_multiply_add.cpp │ │ │ ├── floating_point_min_max.cpp │ │ │ ├── floating_point_multi_function.cpp │ │ │ ├── floating_point_multiply.cpp │ │ │ ├── floating_point_range_reduction.cpp │ │ │ ├── floating_point_set_predicate.cpp │ │ │ ├── floating_point_swizzled_add.cpp │ │ │ ├── half_floating_point_add.cpp │ │ │ ├── half_floating_point_fused_multiply_add.cpp │ │ │ ├── half_floating_point_helper.cpp │ │ │ ├── half_floating_point_helper.h │ │ │ ├── half_floating_point_multiply.cpp │ │ │ ├── half_floating_point_set.cpp │ │ │ ├── half_floating_point_set_predicate.cpp │ │ │ ├── impl.cpp │ │ │ ├── impl.h │ │ │ ├── integer_add.cpp │ │ │ ├── integer_add_three_input.cpp │ │ │ ├── integer_compare.cpp │ │ │ ├── integer_compare_and_set.cpp │ │ │ ├── integer_floating_point_conversion.cpp │ │ │ ├── integer_funnel_shift.cpp │ │ │ ├── integer_minimum_maximum.cpp │ │ │ ├── integer_popcount.cpp │ │ │ ├── integer_scaled_add.cpp │ │ │ ├── integer_set_predicate.cpp │ │ │ ├── integer_shift_left.cpp │ │ │ ├── integer_shift_right.cpp │ │ │ ├── integer_short_multiply_add.cpp │ │ │ ├── integer_to_integer_conversion.cpp │ │ │ ├── internal_stage_buffer_entry_read.cpp │ │ │ ├── load_constant.cpp │ │ │ ├── load_constant.h │ │ │ ├── load_effective_address.cpp │ │ │ ├── load_store_attribute.cpp │ │ │ ├── load_store_local_shared.cpp │ │ │ ├── load_store_memory.cpp │ │ │ ├── logic_operation.cpp │ │ │ ├── logic_operation_three_input.cpp │ │ │ ├── move_predicate_to_register.cpp │ │ │ ├── move_register.cpp │ │ │ ├── move_register_to_predicate.cpp │ │ │ ├── move_special_register.cpp │ │ │ ├── not_implemented.cpp │ │ │ ├── output_geometry.cpp │ │ │ ├── pixel_load.cpp │ │ │ ├── predicate_set_predicate.cpp │ │ │ ├── predicate_set_register.cpp │ │ │ ├── select_source_with_predicate.cpp │ │ │ ├── surface_atomic_operations.cpp │ │ │ ├── surface_load_store.cpp │ │ │ ├── texture_fetch.cpp │ │ │ ├── texture_fetch_swizzled.cpp │ │ │ ├── texture_gather.cpp │ │ │ ├── texture_gather_swizzled.cpp │ │ │ ├── texture_gradient.cpp │ │ │ ├── texture_load.cpp │ │ │ ├── texture_load_swizzled.cpp │ │ │ ├── texture_mipmap_level.cpp │ │ │ ├── texture_query.cpp │ │ │ ├── video_helper.cpp │ │ │ ├── video_helper.h │ │ │ ├── video_minimum_maximum.cpp │ │ │ ├── video_multiply_add.cpp │ │ │ ├── video_set_predicate.cpp │ │ │ ├── vote.cpp │ │ │ └── warp_shuffle.cpp │ │ ├── translate.cpp │ │ └── translate.h │ │ ├── translate_program.cpp │ │ └── translate_program.h ├── host_translate_info.h ├── ir_opt │ ├── collect_shader_info_pass.cpp │ ├── constant_propagation_pass.cpp │ ├── dead_code_elimination_pass.cpp │ ├── dual_vertex_pass.cpp │ ├── global_memory_to_storage_buffer_pass.cpp │ ├── identity_removal_pass.cpp │ ├── lower_fp16_to_fp32.cpp │ ├── lower_int64_to_int32.cpp │ ├── passes.h │ ├── ssa_rewrite_pass.cpp │ ├── texture_pass.cpp │ └── verification_pass.cpp ├── object_pool.h ├── profile.h ├── program_header.h ├── runtime_info.h ├── shader_info.h ├── stage.h └── varying_state.h └── video_core ├── bootmanager.cpp ├── bootmanager.h ├── buffer_cache ├── buffer_base.h ├── buffer_cache.cpp └── buffer_cache.h ├── cdma_pusher.cpp ├── cdma_pusher.h ├── command_classes ├── codecs │ ├── codec.cpp │ ├── codec.h │ ├── h264.cpp │ ├── h264.h │ ├── vp9.cpp │ ├── vp9.h │ └── vp9_types.h ├── host1x.cpp ├── host1x.h ├── nvdec.cpp ├── nvdec.h ├── nvdec_common.h ├── sync_manager.cpp ├── sync_manager.h ├── vic.cpp └── vic.h ├── compatible_formats.cpp ├── compatible_formats.h ├── delayed_destruction_ring.h ├── dirty_flags.cpp ├── dirty_flags.h ├── dma_pusher.cpp ├── dma_pusher.h ├── engines ├── const_buffer_info.h ├── engine_interface.h ├── engine_upload.cpp ├── engine_upload.h ├── fermi_2d.cpp ├── fermi_2d.h ├── kepler_compute.cpp ├── kepler_compute.h ├── kepler_memory.cpp ├── kepler_memory.h ├── maxwell_3d.cpp ├── maxwell_3d.h ├── maxwell_dma.cpp └── maxwell_dma.h ├── fence_manager.h ├── framebuffer_config.h ├── gpu.cpp ├── gpu.h ├── gpu_thread.cpp ├── gpu_thread.h ├── host_shaders ├── StringShaderHeader.cmake ├── astc_decoder.comp ├── block_linear_unswizzle_2d.comp ├── block_linear_unswizzle_3d.comp ├── convert_depth_to_float.frag ├── convert_float_to_depth.frag ├── full_screen_triangle.vert ├── opengl_copy_bc4.comp ├── opengl_present.frag ├── opengl_present.vert ├── pitch_unswizzle.comp ├── source_shader.h.in ├── vulkan_blit_color_float.frag ├── vulkan_blit_depth_stencil.frag ├── vulkan_present.frag ├── vulkan_present.vert ├── vulkan_quad_indexed.comp └── vulkan_uint8.comp ├── macro ├── macro.cpp ├── macro.h ├── macro_hle.cpp ├── macro_hle.h ├── macro_interpreter.cpp └── macro_interpreter.h ├── memory_manager.cpp ├── memory_manager.h ├── query_cache.h ├── rasterizer_accelerated.cpp ├── rasterizer_accelerated.h ├── rasterizer_interface.h ├── renderer_base.cpp ├── renderer_base.h ├── renderer_opengl ├── gl_buffer_cache.cpp ├── gl_buffer_cache.h ├── gl_compute_pipeline.cpp ├── gl_compute_pipeline.h ├── gl_device.cpp ├── gl_device.h ├── gl_fence_manager.cpp ├── gl_fence_manager.h ├── gl_graphics_pipeline.cpp ├── gl_graphics_pipeline.h ├── gl_query_cache.cpp ├── gl_query_cache.h ├── gl_rasterizer.cpp ├── gl_rasterizer.h ├── gl_resource_manager.cpp ├── gl_resource_manager.h ├── gl_shader_cache.cpp ├── gl_shader_cache.h ├── gl_shader_context.h ├── gl_shader_manager.cpp ├── gl_shader_manager.h ├── gl_shader_util.cpp ├── gl_shader_util.h ├── gl_state_tracker.cpp ├── gl_state_tracker.h ├── gl_stream_buffer.cpp ├── gl_stream_buffer.h ├── gl_texture_cache.cpp ├── gl_texture_cache.h ├── gl_texture_cache_base.cpp ├── maxwell_to_gl.h ├── renderer_opengl.cpp ├── renderer_opengl.h ├── util_shaders.cpp └── util_shaders.h ├── renderer_vulkan ├── blit_image.cpp ├── blit_image.h ├── fixed_pipeline_state.cpp ├── fixed_pipeline_state.h ├── maxwell_to_vk.cpp ├── maxwell_to_vk.h ├── pipeline_helper.h ├── pipeline_statistics.cpp ├── pipeline_statistics.h ├── renderer_vulkan.cpp ├── renderer_vulkan.h ├── vk_blit_screen.cpp ├── vk_blit_screen.h ├── vk_buffer_cache.cpp ├── vk_buffer_cache.h ├── vk_command_pool.cpp ├── vk_command_pool.h ├── vk_compute_pass.cpp ├── vk_compute_pass.h ├── vk_compute_pipeline.cpp ├── vk_compute_pipeline.h ├── vk_descriptor_pool.cpp ├── vk_descriptor_pool.h ├── vk_fence_manager.cpp ├── vk_fence_manager.h ├── vk_graphics_pipeline.cpp ├── vk_graphics_pipeline.h ├── vk_master_semaphore.cpp ├── vk_master_semaphore.h ├── vk_pipeline_cache.cpp ├── vk_pipeline_cache.h ├── vk_query_cache.cpp ├── vk_query_cache.h ├── vk_rasterizer.cpp ├── vk_rasterizer.h ├── vk_render_pass_cache.cpp ├── vk_render_pass_cache.h ├── vk_resource_pool.cpp ├── vk_resource_pool.h ├── vk_scheduler.cpp ├── vk_scheduler.h ├── vk_shader_util.cpp ├── vk_shader_util.h ├── vk_staging_buffer_pool.cpp ├── vk_staging_buffer_pool.h ├── vk_state_tracker.cpp ├── vk_state_tracker.h ├── vk_swapchain.cpp ├── vk_swapchain.h ├── vk_texture_cache.cpp ├── vk_texture_cache.h ├── vk_texture_cache_base.cpp ├── vk_update_descriptor.cpp └── vk_update_descriptor.h ├── shader_cache.cpp ├── shader_cache.h ├── shader_environment.cpp ├── shader_environment.h ├── shader_notify.cpp ├── shader_notify.h ├── surface.cpp ├── surface.h ├── texture_cache ├── accelerated_swizzle.cpp ├── accelerated_swizzle.h ├── decode_bc4.cpp ├── decode_bc4.h ├── descriptor_table.h ├── format_lookup_table.cpp ├── format_lookup_table.h ├── formatter.cpp ├── formatter.h ├── image_base.cpp ├── image_base.h ├── image_info.cpp ├── image_info.h ├── image_view_base.cpp ├── image_view_base.h ├── image_view_info.cpp ├── image_view_info.h ├── render_targets.h ├── samples_helper.h ├── slot_vector.h ├── texture_cache.h ├── texture_cache_base.h ├── types.h ├── util.cpp └── util.h ├── textures ├── astc.cpp ├── astc.h ├── decoders.cpp ├── decoders.h ├── texture.cpp └── texture.h ├── transform_feedback.cpp ├── transform_feedback.h ├── video_core.cpp ├── video_core.h └── vulkan_common ├── nsight_aftermath_tracker.cpp ├── nsight_aftermath_tracker.h ├── vulkan_debug_callback.cpp ├── vulkan_debug_callback.h ├── vulkan_device.cpp ├── vulkan_device.h ├── vulkan_instance.cpp ├── vulkan_instance.h ├── vulkan_library.cpp ├── vulkan_library.h ├── vulkan_memory_allocator.cpp ├── vulkan_memory_allocator.h ├── vulkan_surface.cpp ├── vulkan_surface.h ├── vulkan_wrapper.cpp └── vulkan_wrapper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/README.md -------------------------------------------------------------------------------- /audio_core/algorithm/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/algorithm/filter.cpp -------------------------------------------------------------------------------- /audio_core/algorithm/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/algorithm/filter.h -------------------------------------------------------------------------------- /audio_core/algorithm/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/algorithm/interpolate.h -------------------------------------------------------------------------------- /audio_core/audio_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/audio_out.cpp -------------------------------------------------------------------------------- /audio_core/audio_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/audio_out.h -------------------------------------------------------------------------------- /audio_core/audio_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/audio_renderer.cpp -------------------------------------------------------------------------------- /audio_core/audio_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/audio_renderer.h -------------------------------------------------------------------------------- /audio_core/behavior_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/behavior_info.cpp -------------------------------------------------------------------------------- /audio_core/behavior_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/behavior_info.h -------------------------------------------------------------------------------- /audio_core/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/buffer.h -------------------------------------------------------------------------------- /audio_core/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/codec.cpp -------------------------------------------------------------------------------- /audio_core/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/codec.h -------------------------------------------------------------------------------- /audio_core/command_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/command_generator.cpp -------------------------------------------------------------------------------- /audio_core/command_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/command_generator.h -------------------------------------------------------------------------------- /audio_core/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/common.h -------------------------------------------------------------------------------- /audio_core/cubeb_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/cubeb_sink.cpp -------------------------------------------------------------------------------- /audio_core/cubeb_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/cubeb_sink.h -------------------------------------------------------------------------------- /audio_core/delay_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/delay_line.cpp -------------------------------------------------------------------------------- /audio_core/delay_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/delay_line.h -------------------------------------------------------------------------------- /audio_core/effect_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/effect_context.cpp -------------------------------------------------------------------------------- /audio_core/effect_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/effect_context.h -------------------------------------------------------------------------------- /audio_core/info_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/info_updater.cpp -------------------------------------------------------------------------------- /audio_core/info_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/info_updater.h -------------------------------------------------------------------------------- /audio_core/memory_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/memory_pool.cpp -------------------------------------------------------------------------------- /audio_core/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/memory_pool.h -------------------------------------------------------------------------------- /audio_core/mix_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/mix_context.cpp -------------------------------------------------------------------------------- /audio_core/mix_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/mix_context.h -------------------------------------------------------------------------------- /audio_core/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/null_sink.h -------------------------------------------------------------------------------- /audio_core/sdl2_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sdl2_sink.cpp -------------------------------------------------------------------------------- /audio_core/sdl2_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sdl2_sink.h -------------------------------------------------------------------------------- /audio_core/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink.h -------------------------------------------------------------------------------- /audio_core/sink_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink_context.cpp -------------------------------------------------------------------------------- /audio_core/sink_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink_context.h -------------------------------------------------------------------------------- /audio_core/sink_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink_details.cpp -------------------------------------------------------------------------------- /audio_core/sink_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink_details.h -------------------------------------------------------------------------------- /audio_core/sink_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/sink_stream.h -------------------------------------------------------------------------------- /audio_core/splitter_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/splitter_context.cpp -------------------------------------------------------------------------------- /audio_core/splitter_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/splitter_context.h -------------------------------------------------------------------------------- /audio_core/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/stream.cpp -------------------------------------------------------------------------------- /audio_core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/stream.h -------------------------------------------------------------------------------- /audio_core/time_stretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/time_stretch.cpp -------------------------------------------------------------------------------- /audio_core/time_stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/time_stretch.h -------------------------------------------------------------------------------- /audio_core/voice_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/voice_context.cpp -------------------------------------------------------------------------------- /audio_core/voice_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/audio_core/voice_context.h -------------------------------------------------------------------------------- /common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/algorithm.h -------------------------------------------------------------------------------- /common/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/alignment.h -------------------------------------------------------------------------------- /common/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/assert.cpp -------------------------------------------------------------------------------- /common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/assert.h -------------------------------------------------------------------------------- /common/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/bit_cast.h -------------------------------------------------------------------------------- /common/bit_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/bit_field.h -------------------------------------------------------------------------------- /common/bit_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/bit_util.h -------------------------------------------------------------------------------- /common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/cityhash.cpp -------------------------------------------------------------------------------- /common/cityhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/cityhash.h -------------------------------------------------------------------------------- /common/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/common_funcs.h -------------------------------------------------------------------------------- /common/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/common_types.h -------------------------------------------------------------------------------- /common/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/concepts.h -------------------------------------------------------------------------------- /common/div_ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/div_ceil.h -------------------------------------------------------------------------------- /common/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/dynamic_library.cpp -------------------------------------------------------------------------------- /common/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/dynamic_library.h -------------------------------------------------------------------------------- /common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/error.cpp -------------------------------------------------------------------------------- /common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/error.h -------------------------------------------------------------------------------- /common/fs/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/file.cpp -------------------------------------------------------------------------------- /common/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/file.h -------------------------------------------------------------------------------- /common/fs/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs.cpp -------------------------------------------------------------------------------- /common/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs.h -------------------------------------------------------------------------------- /common/fs/fs_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs_paths.h -------------------------------------------------------------------------------- /common/fs/fs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs_types.h -------------------------------------------------------------------------------- /common/fs/fs_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs_util.cpp -------------------------------------------------------------------------------- /common/fs/fs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/fs_util.h -------------------------------------------------------------------------------- /common/fs/path_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/path_util.cpp -------------------------------------------------------------------------------- /common/fs/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/fs/path_util.h -------------------------------------------------------------------------------- /common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/hash.h -------------------------------------------------------------------------------- /common/hex_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/hex_util.cpp -------------------------------------------------------------------------------- /common/hex_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/hex_util.h -------------------------------------------------------------------------------- /common/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/literals.h -------------------------------------------------------------------------------- /common/logging/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/backend.cpp -------------------------------------------------------------------------------- /common/logging/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/backend.h -------------------------------------------------------------------------------- /common/logging/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/filter.cpp -------------------------------------------------------------------------------- /common/logging/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/filter.h -------------------------------------------------------------------------------- /common/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/log.h -------------------------------------------------------------------------------- /common/logging/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/log_entry.h -------------------------------------------------------------------------------- /common/logging/text_formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/text_formatter.cpp -------------------------------------------------------------------------------- /common/logging/text_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/text_formatter.h -------------------------------------------------------------------------------- /common/logging/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/logging/types.h -------------------------------------------------------------------------------- /common/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/lru_cache.h -------------------------------------------------------------------------------- /common/lz4_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/lz4_compression.cpp -------------------------------------------------------------------------------- /common/lz4_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/lz4_compression.h -------------------------------------------------------------------------------- /common/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/math_util.h -------------------------------------------------------------------------------- /common/microprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/microprofile.cpp -------------------------------------------------------------------------------- /common/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/microprofile.h -------------------------------------------------------------------------------- /common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/param_package.cpp -------------------------------------------------------------------------------- /common/param_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/param_package.h -------------------------------------------------------------------------------- /common/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/point.h -------------------------------------------------------------------------------- /common/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/quaternion.h -------------------------------------------------------------------------------- /common/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/ring_buffer.h -------------------------------------------------------------------------------- /common/scm_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/scm_rev.h -------------------------------------------------------------------------------- /common/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/scope_exit.h -------------------------------------------------------------------------------- /common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/settings.cpp -------------------------------------------------------------------------------- /common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/settings.h -------------------------------------------------------------------------------- /common/settings_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/settings_input.cpp -------------------------------------------------------------------------------- /common/settings_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/settings_input.h -------------------------------------------------------------------------------- /common/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/spin_lock.cpp -------------------------------------------------------------------------------- /common/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/spin_lock.h -------------------------------------------------------------------------------- /common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/stream.cpp -------------------------------------------------------------------------------- /common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/stream.h -------------------------------------------------------------------------------- /common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/string_util.cpp -------------------------------------------------------------------------------- /common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/string_util.h -------------------------------------------------------------------------------- /common/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/swap.h -------------------------------------------------------------------------------- /common/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/telemetry.cpp -------------------------------------------------------------------------------- /common/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/telemetry.h -------------------------------------------------------------------------------- /common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/thread.cpp -------------------------------------------------------------------------------- /common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/thread.h -------------------------------------------------------------------------------- /common/thread_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/thread_worker.h -------------------------------------------------------------------------------- /common/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/threadsafe_queue.h -------------------------------------------------------------------------------- /common/time_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/time_zone.cpp -------------------------------------------------------------------------------- /common/time_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/time_zone.h -------------------------------------------------------------------------------- /common/unique_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/unique_function.h -------------------------------------------------------------------------------- /common/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/uuid.cpp -------------------------------------------------------------------------------- /common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/uuid.h -------------------------------------------------------------------------------- /common/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/vector_math.h -------------------------------------------------------------------------------- /common/zstd_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/zstd_compression.cpp -------------------------------------------------------------------------------- /common/zstd_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/common/zstd_compression.h -------------------------------------------------------------------------------- /compat/video_core/bootmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/bootmanager.cpp -------------------------------------------------------------------------------- /compat/video_core/bootmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/bootmanager.h -------------------------------------------------------------------------------- /compat/video_core/cdma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/cdma_pusher.cpp -------------------------------------------------------------------------------- /compat/video_core/cdma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/cdma_pusher.h -------------------------------------------------------------------------------- /compat/video_core/dirty_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/dirty_flags.cpp -------------------------------------------------------------------------------- /compat/video_core/dirty_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/dirty_flags.h -------------------------------------------------------------------------------- /compat/video_core/dma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/dma_pusher.cpp -------------------------------------------------------------------------------- /compat/video_core/dma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/dma_pusher.h -------------------------------------------------------------------------------- /compat/video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/gpu.cpp -------------------------------------------------------------------------------- /compat/video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/gpu.h -------------------------------------------------------------------------------- /compat/video_core/gpu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/gpu_thread.cpp -------------------------------------------------------------------------------- /compat/video_core/gpu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/gpu_thread.h -------------------------------------------------------------------------------- /compat/video_core/guest_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/guest_driver.cpp -------------------------------------------------------------------------------- /compat/video_core/guest_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/guest_driver.h -------------------------------------------------------------------------------- /compat/video_core/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/memory_manager.h -------------------------------------------------------------------------------- /compat/video_core/morton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/morton.cpp -------------------------------------------------------------------------------- /compat/video_core/morton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/morton.h -------------------------------------------------------------------------------- /compat/video_core/query_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/query_cache.h -------------------------------------------------------------------------------- /compat/video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/renderer_base.h -------------------------------------------------------------------------------- /compat/video_core/sampler_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/sampler_cache.h -------------------------------------------------------------------------------- /compat/video_core/shader/ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/ast.cpp -------------------------------------------------------------------------------- /compat/video_core/shader/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/ast.h -------------------------------------------------------------------------------- /compat/video_core/shader/expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/expr.cpp -------------------------------------------------------------------------------- /compat/video_core/shader/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/expr.h -------------------------------------------------------------------------------- /compat/video_core/shader/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/node.h -------------------------------------------------------------------------------- /compat/video_core/shader/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/shader/track.cpp -------------------------------------------------------------------------------- /compat/video_core/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/surface.cpp -------------------------------------------------------------------------------- /compat/video_core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/surface.h -------------------------------------------------------------------------------- /compat/video_core/textures/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/textures/astc.h -------------------------------------------------------------------------------- /compat/video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/video_core.cpp -------------------------------------------------------------------------------- /compat/video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/compat/video_core/video_core.h -------------------------------------------------------------------------------- /configuration/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/configuration/config.cpp -------------------------------------------------------------------------------- /configuration/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/configuration/config.h -------------------------------------------------------------------------------- /core/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/constants.cpp -------------------------------------------------------------------------------- /core/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/constants.h -------------------------------------------------------------------------------- /core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/core.h -------------------------------------------------------------------------------- /core/crypto/aes_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/aes_util.cpp -------------------------------------------------------------------------------- /core/crypto/aes_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/aes_util.h -------------------------------------------------------------------------------- /core/crypto/ctr_encryption_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/ctr_encryption_layer.h -------------------------------------------------------------------------------- /core/crypto/encryption_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/encryption_layer.cpp -------------------------------------------------------------------------------- /core/crypto/encryption_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/encryption_layer.h -------------------------------------------------------------------------------- /core/crypto/key_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/key_manager.cpp -------------------------------------------------------------------------------- /core/crypto/key_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/key_manager.h -------------------------------------------------------------------------------- /core/crypto/xts_encryption_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/crypto/xts_encryption_layer.h -------------------------------------------------------------------------------- /core/file_sys/bis_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/bis_factory.cpp -------------------------------------------------------------------------------- /core/file_sys/bis_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/bis_factory.h -------------------------------------------------------------------------------- /core/file_sys/card_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/card_image.cpp -------------------------------------------------------------------------------- /core/file_sys/card_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/card_image.h -------------------------------------------------------------------------------- /core/file_sys/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/common_funcs.h -------------------------------------------------------------------------------- /core/file_sys/content_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/content_archive.cpp -------------------------------------------------------------------------------- /core/file_sys/content_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/content_archive.h -------------------------------------------------------------------------------- /core/file_sys/control_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/control_metadata.cpp -------------------------------------------------------------------------------- /core/file_sys/control_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/control_metadata.h -------------------------------------------------------------------------------- /core/file_sys/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/directory.h -------------------------------------------------------------------------------- /core/file_sys/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/errors.h -------------------------------------------------------------------------------- /core/file_sys/fsmitm_romfsbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/fsmitm_romfsbuild.h -------------------------------------------------------------------------------- /core/file_sys/ips_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/ips_layer.cpp -------------------------------------------------------------------------------- /core/file_sys/ips_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/ips_layer.h -------------------------------------------------------------------------------- /core/file_sys/kernel_executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/kernel_executable.h -------------------------------------------------------------------------------- /core/file_sys/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/mode.h -------------------------------------------------------------------------------- /core/file_sys/nca_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/nca_metadata.cpp -------------------------------------------------------------------------------- /core/file_sys/nca_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/nca_metadata.h -------------------------------------------------------------------------------- /core/file_sys/nca_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/nca_patch.cpp -------------------------------------------------------------------------------- /core/file_sys/nca_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/nca_patch.h -------------------------------------------------------------------------------- /core/file_sys/patch_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/patch_manager.cpp -------------------------------------------------------------------------------- /core/file_sys/patch_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/patch_manager.h -------------------------------------------------------------------------------- /core/file_sys/program_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/program_metadata.cpp -------------------------------------------------------------------------------- /core/file_sys/program_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/program_metadata.h -------------------------------------------------------------------------------- /core/file_sys/registered_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/registered_cache.cpp -------------------------------------------------------------------------------- /core/file_sys/registered_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/registered_cache.h -------------------------------------------------------------------------------- /core/file_sys/romfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/romfs.cpp -------------------------------------------------------------------------------- /core/file_sys/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/romfs.h -------------------------------------------------------------------------------- /core/file_sys/romfs_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/romfs_factory.cpp -------------------------------------------------------------------------------- /core/file_sys/romfs_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/romfs_factory.h -------------------------------------------------------------------------------- /core/file_sys/savedata_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/savedata_factory.cpp -------------------------------------------------------------------------------- /core/file_sys/savedata_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/savedata_factory.h -------------------------------------------------------------------------------- /core/file_sys/sdmc_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/sdmc_factory.cpp -------------------------------------------------------------------------------- /core/file_sys/sdmc_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/sdmc_factory.h -------------------------------------------------------------------------------- /core/file_sys/submission_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/submission_package.h -------------------------------------------------------------------------------- /core/file_sys/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs.h -------------------------------------------------------------------------------- /core/file_sys/vfs_concat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_concat.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs_concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_concat.h -------------------------------------------------------------------------------- /core/file_sys/vfs_layered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_layered.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs_layered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_layered.h -------------------------------------------------------------------------------- /core/file_sys/vfs_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_offset.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_offset.h -------------------------------------------------------------------------------- /core/file_sys/vfs_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_real.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_real.h -------------------------------------------------------------------------------- /core/file_sys/vfs_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_static.h -------------------------------------------------------------------------------- /core/file_sys/vfs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_types.h -------------------------------------------------------------------------------- /core/file_sys/vfs_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_vector.cpp -------------------------------------------------------------------------------- /core/file_sys/vfs_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/vfs_vector.h -------------------------------------------------------------------------------- /core/file_sys/xts_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/xts_archive.cpp -------------------------------------------------------------------------------- /core/file_sys/xts_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/file_sys/xts_archive.h -------------------------------------------------------------------------------- /core/frontend/applets/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/applets/controller.h -------------------------------------------------------------------------------- /core/frontend/applets/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/applets/error.cpp -------------------------------------------------------------------------------- /core/frontend/applets/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/applets/error.h -------------------------------------------------------------------------------- /core/frontend/emu_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/emu_window.cpp -------------------------------------------------------------------------------- /core/frontend/emu_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/emu_window.h -------------------------------------------------------------------------------- /core/frontend/framebuffer_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/framebuffer_layout.h -------------------------------------------------------------------------------- /core/frontend/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/frontend/input.h -------------------------------------------------------------------------------- /core/hardware_interrupt_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hardware_interrupt_manager.h -------------------------------------------------------------------------------- /core/hardware_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hardware_properties.h -------------------------------------------------------------------------------- /core/hle/api_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/api_version.h -------------------------------------------------------------------------------- /core/hle/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/ipc.h -------------------------------------------------------------------------------- /core/hle/ipc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/ipc_helpers.h -------------------------------------------------------------------------------- /core/hle/kernel/code_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/code_set.h -------------------------------------------------------------------------------- /core/hle/kernel/hle_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/hle_ipc.cpp -------------------------------------------------------------------------------- /core/hle/kernel/hle_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/hle_ipc.h -------------------------------------------------------------------------------- /core/hle/kernel/k_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/k_thread.h -------------------------------------------------------------------------------- /core/hle/kernel/physical_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/physical_memory.h -------------------------------------------------------------------------------- /core/hle/kernel/svc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/svc_common.h -------------------------------------------------------------------------------- /core/hle/kernel/svc_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/kernel/svc_results.h -------------------------------------------------------------------------------- /core/hle/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/lock.cpp -------------------------------------------------------------------------------- /core/hle/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/lock.h -------------------------------------------------------------------------------- /core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/result.h -------------------------------------------------------------------------------- /core/hle/service/acc/acc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc.cpp -------------------------------------------------------------------------------- /core/hle/service/acc/acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc.h -------------------------------------------------------------------------------- /core/hle/service/acc/acc_aa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_aa.cpp -------------------------------------------------------------------------------- /core/hle/service/acc/acc_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_aa.h -------------------------------------------------------------------------------- /core/hle/service/acc/acc_su.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_su.cpp -------------------------------------------------------------------------------- /core/hle/service/acc/acc_su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_su.h -------------------------------------------------------------------------------- /core/hle/service/acc/acc_u0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_u0.cpp -------------------------------------------------------------------------------- /core/hle/service/acc/acc_u0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_u0.h -------------------------------------------------------------------------------- /core/hle/service/acc/acc_u1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_u1.cpp -------------------------------------------------------------------------------- /core/hle/service/acc/acc_u1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/acc_u1.h -------------------------------------------------------------------------------- /core/hle/service/acc/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/acc/errors.h -------------------------------------------------------------------------------- /core/hle/service/am/am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/am.cpp -------------------------------------------------------------------------------- /core/hle/service/am/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/am.h -------------------------------------------------------------------------------- /core/hle/service/am/applet_ae.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/applet_ae.cpp -------------------------------------------------------------------------------- /core/hle/service/am/applet_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/applet_ae.h -------------------------------------------------------------------------------- /core/hle/service/am/applet_oe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/applet_oe.cpp -------------------------------------------------------------------------------- /core/hle/service/am/applet_oe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/applet_oe.h -------------------------------------------------------------------------------- /core/hle/service/am/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/idle.cpp -------------------------------------------------------------------------------- /core/hle/service/am/idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/idle.h -------------------------------------------------------------------------------- /core/hle/service/am/omm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/omm.cpp -------------------------------------------------------------------------------- /core/hle/service/am/omm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/omm.h -------------------------------------------------------------------------------- /core/hle/service/am/spsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/spsm.cpp -------------------------------------------------------------------------------- /core/hle/service/am/spsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/spsm.h -------------------------------------------------------------------------------- /core/hle/service/am/tcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/tcap.cpp -------------------------------------------------------------------------------- /core/hle/service/am/tcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/am/tcap.h -------------------------------------------------------------------------------- /core/hle/service/aoc/aoc_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/aoc/aoc_u.cpp -------------------------------------------------------------------------------- /core/hle/service/aoc/aoc_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/aoc/aoc_u.h -------------------------------------------------------------------------------- /core/hle/service/apm/apm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/apm/apm.cpp -------------------------------------------------------------------------------- /core/hle/service/apm/apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/apm/apm.h -------------------------------------------------------------------------------- /core/hle/service/audio/audctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audctl.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/audctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audctl.h -------------------------------------------------------------------------------- /core/hle/service/audio/auddbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/auddbg.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/auddbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/auddbg.h -------------------------------------------------------------------------------- /core/hle/service/audio/audin_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audin_a.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/audin_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audin_a.h -------------------------------------------------------------------------------- /core/hle/service/audio/audin_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audin_u.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/audin_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audin_u.h -------------------------------------------------------------------------------- /core/hle/service/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audio.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audio.h -------------------------------------------------------------------------------- /core/hle/service/audio/audout_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audout_a.h -------------------------------------------------------------------------------- /core/hle/service/audio/audout_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audout_u.h -------------------------------------------------------------------------------- /core/hle/service/audio/audrec_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audrec_a.h -------------------------------------------------------------------------------- /core/hle/service/audio/audrec_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audrec_u.h -------------------------------------------------------------------------------- /core/hle/service/audio/audren_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audren_a.h -------------------------------------------------------------------------------- /core/hle/service/audio/audren_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/audren_u.h -------------------------------------------------------------------------------- /core/hle/service/audio/codecctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/codecctl.h -------------------------------------------------------------------------------- /core/hle/service/audio/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/errors.h -------------------------------------------------------------------------------- /core/hle/service/audio/hwopus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/hwopus.cpp -------------------------------------------------------------------------------- /core/hle/service/audio/hwopus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/audio/hwopus.h -------------------------------------------------------------------------------- /core/hle/service/bcat/bcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/bcat/bcat.cpp -------------------------------------------------------------------------------- /core/hle/service/bcat/bcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/bcat/bcat.h -------------------------------------------------------------------------------- /core/hle/service/bpc/bpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/bpc/bpc.cpp -------------------------------------------------------------------------------- /core/hle/service/bpc/bpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/bpc/bpc.h -------------------------------------------------------------------------------- /core/hle/service/btdrv/btdrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/btdrv/btdrv.cpp -------------------------------------------------------------------------------- /core/hle/service/btdrv/btdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/btdrv/btdrv.h -------------------------------------------------------------------------------- /core/hle/service/btm/btm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/btm/btm.cpp -------------------------------------------------------------------------------- /core/hle/service/btm/btm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/btm/btm.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_a.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_a.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_c.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_c.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_sc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_sc.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_sc.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_ss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_ss.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_ss.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_su.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_su.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_su.h -------------------------------------------------------------------------------- /core/hle/service/caps/caps_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_u.cpp -------------------------------------------------------------------------------- /core/hle/service/caps/caps_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/caps/caps_u.h -------------------------------------------------------------------------------- /core/hle/service/erpt/erpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/erpt/erpt.cpp -------------------------------------------------------------------------------- /core/hle/service/erpt/erpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/erpt/erpt.h -------------------------------------------------------------------------------- /core/hle/service/es/es.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/es/es.cpp -------------------------------------------------------------------------------- /core/hle/service/es/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/es/es.h -------------------------------------------------------------------------------- /core/hle/service/eupld/eupld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/eupld/eupld.cpp -------------------------------------------------------------------------------- /core/hle/service/eupld/eupld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/eupld/eupld.h -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal.cpp -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal.h -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal_p.cpp -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal_p.h -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal_u.cpp -------------------------------------------------------------------------------- /core/hle/service/fatal/fatal_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fatal/fatal_u.h -------------------------------------------------------------------------------- /core/hle/service/fgm/fgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fgm/fgm.cpp -------------------------------------------------------------------------------- /core/hle/service/fgm/fgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/fgm/fgm.h -------------------------------------------------------------------------------- /core/hle/service/friend/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/friend/errors.h -------------------------------------------------------------------------------- /core/hle/service/friend/friend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/friend/friend.cpp -------------------------------------------------------------------------------- /core/hle/service/friend/friend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/friend/friend.h -------------------------------------------------------------------------------- /core/hle/service/glue/arp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/arp.cpp -------------------------------------------------------------------------------- /core/hle/service/glue/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/arp.h -------------------------------------------------------------------------------- /core/hle/service/glue/bgtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/bgtc.cpp -------------------------------------------------------------------------------- /core/hle/service/glue/bgtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/bgtc.h -------------------------------------------------------------------------------- /core/hle/service/glue/ectx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/ectx.cpp -------------------------------------------------------------------------------- /core/hle/service/glue/ectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/ectx.h -------------------------------------------------------------------------------- /core/hle/service/glue/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/errors.h -------------------------------------------------------------------------------- /core/hle/service/glue/glue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/glue.cpp -------------------------------------------------------------------------------- /core/hle/service/glue/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/glue/glue.h -------------------------------------------------------------------------------- /core/hle/service/grc/grc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/grc/grc.cpp -------------------------------------------------------------------------------- /core/hle/service/grc/grc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/grc/grc.h -------------------------------------------------------------------------------- /core/hle/service/hid/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/errors.h -------------------------------------------------------------------------------- /core/hle/service/hid/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/hid.cpp -------------------------------------------------------------------------------- /core/hle/service/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/hid.h -------------------------------------------------------------------------------- /core/hle/service/hid/irs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/irs.cpp -------------------------------------------------------------------------------- /core/hle/service/hid/irs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/irs.h -------------------------------------------------------------------------------- /core/hle/service/hid/xcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/xcd.cpp -------------------------------------------------------------------------------- /core/hle/service/hid/xcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/hid/xcd.h -------------------------------------------------------------------------------- /core/hle/service/kernel_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/kernel_helpers.h -------------------------------------------------------------------------------- /core/hle/service/lbl/lbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/lbl/lbl.cpp -------------------------------------------------------------------------------- /core/hle/service/lbl/lbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/lbl/lbl.h -------------------------------------------------------------------------------- /core/hle/service/ldn/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ldn/errors.h -------------------------------------------------------------------------------- /core/hle/service/ldn/ldn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ldn/ldn.cpp -------------------------------------------------------------------------------- /core/hle/service/ldn/ldn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ldn/ldn.h -------------------------------------------------------------------------------- /core/hle/service/ldr/ldr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ldr/ldr.cpp -------------------------------------------------------------------------------- /core/hle/service/ldr/ldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ldr/ldr.h -------------------------------------------------------------------------------- /core/hle/service/lm/lm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/lm/lm.cpp -------------------------------------------------------------------------------- /core/hle/service/lm/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/lm/lm.h -------------------------------------------------------------------------------- /core/hle/service/mig/mig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mig/mig.cpp -------------------------------------------------------------------------------- /core/hle/service/mig/mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mig/mig.h -------------------------------------------------------------------------------- /core/hle/service/mii/mii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/mii.cpp -------------------------------------------------------------------------------- /core/hle/service/mii/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/mii.h -------------------------------------------------------------------------------- /core/hle/service/mii/mii_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/mii_manager.h -------------------------------------------------------------------------------- /core/hle/service/mii/raw_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/raw_data.cpp -------------------------------------------------------------------------------- /core/hle/service/mii/raw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/raw_data.h -------------------------------------------------------------------------------- /core/hle/service/mii/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mii/types.h -------------------------------------------------------------------------------- /core/hle/service/mm/mm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mm/mm_u.cpp -------------------------------------------------------------------------------- /core/hle/service/mm/mm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/mm/mm_u.h -------------------------------------------------------------------------------- /core/hle/service/ncm/ncm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ncm/ncm.cpp -------------------------------------------------------------------------------- /core/hle/service/ncm/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ncm/ncm.h -------------------------------------------------------------------------------- /core/hle/service/nfc/nfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfc/nfc.cpp -------------------------------------------------------------------------------- /core/hle/service/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfc/nfc.h -------------------------------------------------------------------------------- /core/hle/service/nfp/nfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfp/nfp.cpp -------------------------------------------------------------------------------- /core/hle/service/nfp/nfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfp/nfp.h -------------------------------------------------------------------------------- /core/hle/service/nfp/nfp_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfp/nfp_user.cpp -------------------------------------------------------------------------------- /core/hle/service/nfp/nfp_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nfp/nfp_user.h -------------------------------------------------------------------------------- /core/hle/service/ngct/ngct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ngct/ngct.cpp -------------------------------------------------------------------------------- /core/hle/service/ngct/ngct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ngct/ngct.h -------------------------------------------------------------------------------- /core/hle/service/nifm/nifm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nifm/nifm.cpp -------------------------------------------------------------------------------- /core/hle/service/nifm/nifm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nifm/nifm.h -------------------------------------------------------------------------------- /core/hle/service/nim/nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nim/nim.cpp -------------------------------------------------------------------------------- /core/hle/service/nim/nim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nim/nim.h -------------------------------------------------------------------------------- /core/hle/service/npns/npns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/npns/npns.cpp -------------------------------------------------------------------------------- /core/hle/service/npns/npns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/npns/npns.h -------------------------------------------------------------------------------- /core/hle/service/ns/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/errors.h -------------------------------------------------------------------------------- /core/hle/service/ns/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/language.cpp -------------------------------------------------------------------------------- /core/hle/service/ns/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/language.h -------------------------------------------------------------------------------- /core/hle/service/ns/ns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/ns.cpp -------------------------------------------------------------------------------- /core/hle/service/ns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/ns.h -------------------------------------------------------------------------------- /core/hle/service/ns/pl_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/pl_u.cpp -------------------------------------------------------------------------------- /core/hle/service/ns/pl_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ns/pl_u.h -------------------------------------------------------------------------------- /core/hle/service/nvdrv/nvdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nvdrv/nvdata.h -------------------------------------------------------------------------------- /core/hle/service/nvdrv/nvdrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nvdrv/nvdrv.cpp -------------------------------------------------------------------------------- /core/hle/service/nvdrv/nvdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nvdrv/nvdrv.h -------------------------------------------------------------------------------- /core/hle/service/nvdrv/nvmemp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nvdrv/nvmemp.cpp -------------------------------------------------------------------------------- /core/hle/service/nvdrv/nvmemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/nvdrv/nvmemp.h -------------------------------------------------------------------------------- /core/hle/service/olsc/olsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/olsc/olsc.cpp -------------------------------------------------------------------------------- /core/hle/service/olsc/olsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/olsc/olsc.h -------------------------------------------------------------------------------- /core/hle/service/pcie/pcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pcie/pcie.cpp -------------------------------------------------------------------------------- /core/hle/service/pcie/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pcie/pcie.h -------------------------------------------------------------------------------- /core/hle/service/pctl/pctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pctl/pctl.cpp -------------------------------------------------------------------------------- /core/hle/service/pctl/pctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pctl/pctl.h -------------------------------------------------------------------------------- /core/hle/service/pcv/pcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pcv/pcv.cpp -------------------------------------------------------------------------------- /core/hle/service/pcv/pcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pcv/pcv.h -------------------------------------------------------------------------------- /core/hle/service/pm/pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pm/pm.cpp -------------------------------------------------------------------------------- /core/hle/service/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/pm/pm.h -------------------------------------------------------------------------------- /core/hle/service/prepo/prepo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/prepo/prepo.cpp -------------------------------------------------------------------------------- /core/hle/service/prepo/prepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/prepo/prepo.h -------------------------------------------------------------------------------- /core/hle/service/psc/psc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/psc/psc.cpp -------------------------------------------------------------------------------- /core/hle/service/psc/psc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/psc/psc.h -------------------------------------------------------------------------------- /core/hle/service/ptm/psm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ptm/psm.cpp -------------------------------------------------------------------------------- /core/hle/service/ptm/psm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ptm/psm.h -------------------------------------------------------------------------------- /core/hle/service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/service.cpp -------------------------------------------------------------------------------- /core/hle/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/service.h -------------------------------------------------------------------------------- /core/hle/service/set/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set.cpp -------------------------------------------------------------------------------- /core/hle/service/set/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set.h -------------------------------------------------------------------------------- /core/hle/service/set/set_cal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_cal.cpp -------------------------------------------------------------------------------- /core/hle/service/set/set_cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_cal.h -------------------------------------------------------------------------------- /core/hle/service/set/set_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_fd.cpp -------------------------------------------------------------------------------- /core/hle/service/set/set_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_fd.h -------------------------------------------------------------------------------- /core/hle/service/set/set_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_sys.cpp -------------------------------------------------------------------------------- /core/hle/service/set/set_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/set_sys.h -------------------------------------------------------------------------------- /core/hle/service/set/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/settings.cpp -------------------------------------------------------------------------------- /core/hle/service/set/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/set/settings.h -------------------------------------------------------------------------------- /core/hle/service/sm/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sm/sm.cpp -------------------------------------------------------------------------------- /core/hle/service/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sm/sm.h -------------------------------------------------------------------------------- /core/hle/service/sockets/bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/bsd.cpp -------------------------------------------------------------------------------- /core/hle/service/sockets/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/bsd.h -------------------------------------------------------------------------------- /core/hle/service/sockets/ethc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/ethc.cpp -------------------------------------------------------------------------------- /core/hle/service/sockets/ethc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/ethc.h -------------------------------------------------------------------------------- /core/hle/service/sockets/nsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/nsd.cpp -------------------------------------------------------------------------------- /core/hle/service/sockets/nsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/nsd.h -------------------------------------------------------------------------------- /core/hle/service/sockets/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/sockets/sockets.h -------------------------------------------------------------------------------- /core/hle/service/spl/csrng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/csrng.cpp -------------------------------------------------------------------------------- /core/hle/service/spl/csrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/csrng.h -------------------------------------------------------------------------------- /core/hle/service/spl/spl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/spl.cpp -------------------------------------------------------------------------------- /core/hle/service/spl/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/spl.h -------------------------------------------------------------------------------- /core/hle/service/spl/spl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/spl_module.h -------------------------------------------------------------------------------- /core/hle/service/spl/spl_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/spl_results.h -------------------------------------------------------------------------------- /core/hle/service/spl/spl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/spl/spl_types.h -------------------------------------------------------------------------------- /core/hle/service/ssl/ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ssl/ssl.cpp -------------------------------------------------------------------------------- /core/hle/service/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/ssl/ssl.h -------------------------------------------------------------------------------- /core/hle/service/time/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/time/errors.h -------------------------------------------------------------------------------- /core/hle/service/time/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/time/time.cpp -------------------------------------------------------------------------------- /core/hle/service/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/time/time.h -------------------------------------------------------------------------------- /core/hle/service/usb/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/usb/usb.cpp -------------------------------------------------------------------------------- /core/hle/service/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/usb/usb.h -------------------------------------------------------------------------------- /core/hle/service/vi/vi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi.cpp -------------------------------------------------------------------------------- /core/hle/service/vi/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi.h -------------------------------------------------------------------------------- /core/hle/service/vi/vi_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_m.cpp -------------------------------------------------------------------------------- /core/hle/service/vi/vi_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_m.h -------------------------------------------------------------------------------- /core/hle/service/vi/vi_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_s.cpp -------------------------------------------------------------------------------- /core/hle/service/vi/vi_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_s.h -------------------------------------------------------------------------------- /core/hle/service/vi/vi_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_u.cpp -------------------------------------------------------------------------------- /core/hle/service/vi/vi_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/vi/vi_u.h -------------------------------------------------------------------------------- /core/hle/service/wlan/wlan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/wlan/wlan.cpp -------------------------------------------------------------------------------- /core/hle/service/wlan/wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/hle/service/wlan/wlan.h -------------------------------------------------------------------------------- /core/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/loader.cpp -------------------------------------------------------------------------------- /core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/loader.h -------------------------------------------------------------------------------- /core/loader/nca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nca.cpp -------------------------------------------------------------------------------- /core/loader/nca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nca.h -------------------------------------------------------------------------------- /core/loader/nro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nro.cpp -------------------------------------------------------------------------------- /core/loader/nro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nro.h -------------------------------------------------------------------------------- /core/loader/nso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nso.cpp -------------------------------------------------------------------------------- /core/loader/nso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nso.h -------------------------------------------------------------------------------- /core/loader/nsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nsp.cpp -------------------------------------------------------------------------------- /core/loader/nsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/loader/nsp.h -------------------------------------------------------------------------------- /core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/memory.h -------------------------------------------------------------------------------- /core/memory/cheat_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/memory/cheat_engine.h -------------------------------------------------------------------------------- /core/memory/dmnt_cheat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/memory/dmnt_cheat_types.h -------------------------------------------------------------------------------- /core/memory/dmnt_cheat_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/memory/dmnt_cheat_vm.h -------------------------------------------------------------------------------- /core/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/network/network.cpp -------------------------------------------------------------------------------- /core/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/network/network.h -------------------------------------------------------------------------------- /core/network/network_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/network/network_interface.cpp -------------------------------------------------------------------------------- /core/network/network_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/network/network_interface.h -------------------------------------------------------------------------------- /core/network/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/network/sockets.h -------------------------------------------------------------------------------- /core/perf_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/perf_stats.cpp -------------------------------------------------------------------------------- /core/perf_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/perf_stats.h -------------------------------------------------------------------------------- /core/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/reporter.cpp -------------------------------------------------------------------------------- /core/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/reporter.h -------------------------------------------------------------------------------- /core/telemetry_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/telemetry_session.cpp -------------------------------------------------------------------------------- /core/telemetry_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/core/telemetry_session.h -------------------------------------------------------------------------------- /externals/SDL/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/.clang-format -------------------------------------------------------------------------------- /externals/SDL/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/.editorconfig -------------------------------------------------------------------------------- /externals/SDL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/.gitignore -------------------------------------------------------------------------------- /externals/SDL/.wikiheaders-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/.wikiheaders-options -------------------------------------------------------------------------------- /externals/SDL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Android.mk -------------------------------------------------------------------------------- /externals/SDL/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/BUGS.txt -------------------------------------------------------------------------------- /externals/SDL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/CMakeLists.txt -------------------------------------------------------------------------------- /externals/SDL/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/CREDITS.txt -------------------------------------------------------------------------------- /externals/SDL/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/INSTALL.txt -------------------------------------------------------------------------------- /externals/SDL/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/LICENSE.txt -------------------------------------------------------------------------------- /externals/SDL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Makefile.in -------------------------------------------------------------------------------- /externals/SDL/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Makefile.minimal -------------------------------------------------------------------------------- /externals/SDL/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Makefile.os2 -------------------------------------------------------------------------------- /externals/SDL/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Makefile.pandora -------------------------------------------------------------------------------- /externals/SDL/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/Makefile.w32 -------------------------------------------------------------------------------- /externals/SDL/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/README-SDL.txt -------------------------------------------------------------------------------- /externals/SDL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/README.md -------------------------------------------------------------------------------- /externals/SDL/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/SDL2.spec.in -------------------------------------------------------------------------------- /externals/SDL/SDL2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/SDL2Config.cmake.in -------------------------------------------------------------------------------- /externals/SDL/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/TODO.txt -------------------------------------------------------------------------------- /externals/SDL/VisualC-GDK/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/VisualC-GDK/SDL.sln -------------------------------------------------------------------------------- /externals/SDL/VisualC-GDK/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/VisualC-GDK/clean.sh -------------------------------------------------------------------------------- /externals/SDL/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/VisualC/SDL.sln -------------------------------------------------------------------------------- /externals/SDL/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/VisualC/clean.sh -------------------------------------------------------------------------------- /externals/SDL/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/WhatsNew.txt -------------------------------------------------------------------------------- /externals/SDL/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/acinclude/alsa.m4 -------------------------------------------------------------------------------- /externals/SDL/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/acinclude/esd.m4 -------------------------------------------------------------------------------- /externals/SDL/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/acinclude/libtool.m4 -------------------------------------------------------------------------------- /externals/SDL/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /externals/SDL/acinclude/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/acinclude/pkg.m4 -------------------------------------------------------------------------------- /externals/SDL/android-project-ant/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | ../android-project/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /externals/SDL/android-project-ant/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /externals/SDL/android-project-ant/src: -------------------------------------------------------------------------------- 1 | ../android-project/app/src/main/java -------------------------------------------------------------------------------- /externals/SDL/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /externals/SDL/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /externals/SDL/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/autogen.sh -------------------------------------------------------------------------------- /externals/SDL/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/cmake/macros.cmake -------------------------------------------------------------------------------- /externals/SDL/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/configure -------------------------------------------------------------------------------- /externals/SDL/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/configure.ac -------------------------------------------------------------------------------- /externals/SDL/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-cmake.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-gdk.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-git.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-hg.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-ios.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-linux.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-macos.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-nacl.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-ngage.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-os2.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-ps2.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-psp.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-touch.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-vita.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-wince.md -------------------------------------------------------------------------------- /externals/SDL/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README-winrt.md -------------------------------------------------------------------------------- /externals/SDL/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/README.md -------------------------------------------------------------------------------- /externals/SDL/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/docs/doxyfile -------------------------------------------------------------------------------- /externals/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_bits.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_config.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_egl.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_guid.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_hidapi.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_hints.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_locale.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_log.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_metal.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_misc.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_render.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_sensor.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_shape.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_system.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_test.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_touch.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /externals/SDL/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/SDL_vulkan.h -------------------------------------------------------------------------------- /externals/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/begin_code.h -------------------------------------------------------------------------------- /externals/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/include/close_code.h -------------------------------------------------------------------------------- /externals/SDL/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/sdl2-config.cmake.in -------------------------------------------------------------------------------- /externals/SDL/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/sdl2-config.in -------------------------------------------------------------------------------- /externals/SDL/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/sdl2.m4 -------------------------------------------------------------------------------- /externals/SDL/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/sdl2.pc.in -------------------------------------------------------------------------------- /externals/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_assert.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_assert_c.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_guid.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_hints.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_hints_c.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_internal.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_list.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_list.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_log.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_log_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_log_c.h -------------------------------------------------------------------------------- /externals/SDL/src/SDL_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_utils.c -------------------------------------------------------------------------------- /externals/SDL/src/SDL_utils_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/SDL_utils_c.h -------------------------------------------------------------------------------- /externals/SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /externals/SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /externals/SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/hidapi/bootstrap -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/ios/hid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/hidapi/ios/hid.m -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/hidapi/m4/pkg.m4 -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /externals/SDL/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_atan2.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_exp.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_fmod.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_log10.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/k_tan.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/math_libm.h -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_atan.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /externals/SDL/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/libm/s_tan.c -------------------------------------------------------------------------------- /externals/SDL/src/misc/SDL_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/misc/SDL_url.c -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_egl.c -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /externals/SDL/src/video/SDL_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/SDL_yuv.c -------------------------------------------------------------------------------- /externals/SDL/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/qnx/gl.c -------------------------------------------------------------------------------- /externals/SDL/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/src/video/x11/edid.h -------------------------------------------------------------------------------- /externals/SDL/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/CMakeLists.txt -------------------------------------------------------------------------------- /externals/SDL/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/COPYING -------------------------------------------------------------------------------- /externals/SDL/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/Makefile.in -------------------------------------------------------------------------------- /externals/SDL/test/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/Makefile.os2 -------------------------------------------------------------------------------- /externals/SDL/test/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/Makefile.w32 -------------------------------------------------------------------------------- /externals/SDL/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/README -------------------------------------------------------------------------------- /externals/SDL/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/acinclude.m4 -------------------------------------------------------------------------------- /externals/SDL/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/autogen.sh -------------------------------------------------------------------------------- /externals/SDL/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/axis.bmp -------------------------------------------------------------------------------- /externals/SDL/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/button.bmp -------------------------------------------------------------------------------- /externals/SDL/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/checkkeys.c -------------------------------------------------------------------------------- /externals/SDL/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/configure -------------------------------------------------------------------------------- /externals/SDL/test/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/configure.ac -------------------------------------------------------------------------------- /externals/SDL/test/controllermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/controllermap.c -------------------------------------------------------------------------------- /externals/SDL/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/icon.bmp -------------------------------------------------------------------------------- /externals/SDL/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/loopwave.c -------------------------------------------------------------------------------- /externals/SDL/test/loopwavequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/loopwavequeue.c -------------------------------------------------------------------------------- /externals/SDL/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/moose.dat -------------------------------------------------------------------------------- /externals/SDL/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/nacl/Makefile -------------------------------------------------------------------------------- /externals/SDL/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/nacl/common.js -------------------------------------------------------------------------------- /externals/SDL/test/nacl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/nacl/index.html -------------------------------------------------------------------------------- /externals/SDL/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/picture.xbm -------------------------------------------------------------------------------- /externals/SDL/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/sample.bmp -------------------------------------------------------------------------------- /externals/SDL/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/sample.wav -------------------------------------------------------------------------------- /externals/SDL/test/template.test.in: -------------------------------------------------------------------------------- 1 | [Test] 2 | Type=session 3 | Exec=@installedtestsdir@/@exe@ 4 | -------------------------------------------------------------------------------- /externals/SDL/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testatomic.c -------------------------------------------------------------------------------- /externals/SDL/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testaudioinfo.c -------------------------------------------------------------------------------- /externals/SDL/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testbounds.c -------------------------------------------------------------------------------- /externals/SDL/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testdraw2.c -------------------------------------------------------------------------------- /externals/SDL/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testdropfile.c -------------------------------------------------------------------------------- /externals/SDL/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testerror.c -------------------------------------------------------------------------------- /externals/SDL/test/testevdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testevdev.c -------------------------------------------------------------------------------- /externals/SDL/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testfile.c -------------------------------------------------------------------------------- /externals/SDL/test/testgeometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgeometry.c -------------------------------------------------------------------------------- /externals/SDL/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgesture.c -------------------------------------------------------------------------------- /externals/SDL/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgl2.c -------------------------------------------------------------------------------- /externals/SDL/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgles.c -------------------------------------------------------------------------------- /externals/SDL/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgles2.c -------------------------------------------------------------------------------- /externals/SDL/test/testgles2_sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testgles2_sdf.c -------------------------------------------------------------------------------- /externals/SDL/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testhaptic.c -------------------------------------------------------------------------------- /externals/SDL/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testhotplug.c -------------------------------------------------------------------------------- /externals/SDL/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testiconv.c -------------------------------------------------------------------------------- /externals/SDL/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testime.c -------------------------------------------------------------------------------- /externals/SDL/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testjoystick.c -------------------------------------------------------------------------------- /externals/SDL/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testkeys.c -------------------------------------------------------------------------------- /externals/SDL/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testloadso.c -------------------------------------------------------------------------------- /externals/SDL/test/testlocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testlocale.c -------------------------------------------------------------------------------- /externals/SDL/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testlock.c -------------------------------------------------------------------------------- /externals/SDL/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testmessage.c -------------------------------------------------------------------------------- /externals/SDL/test/testmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testmouse.c -------------------------------------------------------------------------------- /externals/SDL/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testnative.c -------------------------------------------------------------------------------- /externals/SDL/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testnative.h -------------------------------------------------------------------------------- /externals/SDL/test/testnativeos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testnativeos2.c -------------------------------------------------------------------------------- /externals/SDL/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testnativew32.c -------------------------------------------------------------------------------- /externals/SDL/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testnativex11.c -------------------------------------------------------------------------------- /externals/SDL/test/testoffscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testoffscreen.c -------------------------------------------------------------------------------- /externals/SDL/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testoverlay2.c -------------------------------------------------------------------------------- /externals/SDL/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testplatform.c -------------------------------------------------------------------------------- /externals/SDL/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testpower.c -------------------------------------------------------------------------------- /externals/SDL/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testqsort.c -------------------------------------------------------------------------------- /externals/SDL/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testrelative.c -------------------------------------------------------------------------------- /externals/SDL/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testresample.c -------------------------------------------------------------------------------- /externals/SDL/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testrumble.c -------------------------------------------------------------------------------- /externals/SDL/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testscale.c -------------------------------------------------------------------------------- /externals/SDL/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testsem.c -------------------------------------------------------------------------------- /externals/SDL/test/testsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testsensor.c -------------------------------------------------------------------------------- /externals/SDL/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testshader.c -------------------------------------------------------------------------------- /externals/SDL/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testshape.c -------------------------------------------------------------------------------- /externals/SDL/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testsprite2.c -------------------------------------------------------------------------------- /externals/SDL/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/teststreaming.c -------------------------------------------------------------------------------- /externals/SDL/test/testsurround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testsurround.c -------------------------------------------------------------------------------- /externals/SDL/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testthread.c -------------------------------------------------------------------------------- /externals/SDL/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testtimer.c -------------------------------------------------------------------------------- /externals/SDL/test/testurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testurl.c -------------------------------------------------------------------------------- /externals/SDL/test/testutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testutils.c -------------------------------------------------------------------------------- /externals/SDL/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testutils.h -------------------------------------------------------------------------------- /externals/SDL/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testver.c -------------------------------------------------------------------------------- /externals/SDL/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testviewport.c -------------------------------------------------------------------------------- /externals/SDL/test/testvulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testvulkan.c -------------------------------------------------------------------------------- /externals/SDL/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testwm2.c -------------------------------------------------------------------------------- /externals/SDL/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testyuv.bmp -------------------------------------------------------------------------------- /externals/SDL/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testyuv.c -------------------------------------------------------------------------------- /externals/SDL/test/testyuv_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testyuv_cvt.c -------------------------------------------------------------------------------- /externals/SDL/test/testyuv_cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/testyuv_cvt.h -------------------------------------------------------------------------------- /externals/SDL/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/torturethread.c -------------------------------------------------------------------------------- /externals/SDL/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/utf8.txt -------------------------------------------------------------------------------- /externals/SDL/test/versioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/versioning.sh -------------------------------------------------------------------------------- /externals/SDL/test/watcom.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/test/watcom.mif -------------------------------------------------------------------------------- /externals/SDL/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /externals/SDL/visualtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/SDL/visualtest/configure -------------------------------------------------------------------------------- /externals/SDL/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /externals/cubeb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/.clang-format -------------------------------------------------------------------------------- /externals/cubeb/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | -------------------------------------------------------------------------------- /externals/cubeb/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/.gitmodules -------------------------------------------------------------------------------- /externals/cubeb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/AUTHORS -------------------------------------------------------------------------------- /externals/cubeb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cubeb/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/Config.cmake.in -------------------------------------------------------------------------------- /externals/cubeb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/INSTALL.md -------------------------------------------------------------------------------- /externals/cubeb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/LICENSE -------------------------------------------------------------------------------- /externals/cubeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/README.md -------------------------------------------------------------------------------- /externals/cubeb/cubeb.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/cubeb.supp -------------------------------------------------------------------------------- /externals/cubeb/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/docs/Doxyfile.in -------------------------------------------------------------------------------- /externals/cubeb/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/googletest/CHANGES -------------------------------------------------------------------------------- /externals/cubeb/googletest/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/googletest/COPYING -------------------------------------------------------------------------------- /externals/cubeb/googletest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/googletest/README -------------------------------------------------------------------------------- /externals/cubeb/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb-jni.cpp -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb-jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb-jni.h -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb-sles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb-sles.h -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb.c -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_alsa.c -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_assert.h -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_jack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_jack.cpp -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_kai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_kai.c -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_log.h -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_oss.c -------------------------------------------------------------------------------- /externals/cubeb/src/cubeb_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/src/cubeb_sun.c -------------------------------------------------------------------------------- /externals/cubeb/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/test/README.md -------------------------------------------------------------------------------- /externals/cubeb/test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/cubeb/test/common.h -------------------------------------------------------------------------------- /externals/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /externals/mbedtls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/.gitignore -------------------------------------------------------------------------------- /externals/mbedtls/.globalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/.globalrc -------------------------------------------------------------------------------- /externals/mbedtls/.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/.mypy.ini -------------------------------------------------------------------------------- /externals/mbedtls/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/.pylintrc -------------------------------------------------------------------------------- /externals/mbedtls/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/.travis.yml -------------------------------------------------------------------------------- /externals/mbedtls/3rdparty/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | -------------------------------------------------------------------------------- /externals/mbedtls/3rdparty/everest/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | Makefile 3 | -------------------------------------------------------------------------------- /externals/mbedtls/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/ChangeLog -------------------------------------------------------------------------------- /externals/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/LICENSE -------------------------------------------------------------------------------- /externals/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/Makefile -------------------------------------------------------------------------------- /externals/mbedtls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/README.md -------------------------------------------------------------------------------- /externals/mbedtls/dco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/dco.txt -------------------------------------------------------------------------------- /externals/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /externals/mbedtls/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /externals/mbedtls/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/aes.c -------------------------------------------------------------------------------- /externals/mbedtls/library/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/ccm.c -------------------------------------------------------------------------------- /externals/mbedtls/library/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/des.c -------------------------------------------------------------------------------- /externals/mbedtls/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/dhm.c -------------------------------------------------------------------------------- /externals/mbedtls/library/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/ecp.c -------------------------------------------------------------------------------- /externals/mbedtls/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/gcm.c -------------------------------------------------------------------------------- /externals/mbedtls/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/md.c -------------------------------------------------------------------------------- /externals/mbedtls/library/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/md2.c -------------------------------------------------------------------------------- /externals/mbedtls/library/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/md4.c -------------------------------------------------------------------------------- /externals/mbedtls/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/md5.c -------------------------------------------------------------------------------- /externals/mbedtls/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/oid.c -------------------------------------------------------------------------------- /externals/mbedtls/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/pem.c -------------------------------------------------------------------------------- /externals/mbedtls/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/pk.c -------------------------------------------------------------------------------- /externals/mbedtls/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/mbedtls/library/rsa.c -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_client.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_dtlsclient.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_dtlsserver.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_privkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_pubkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_server.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_x509crl.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_x509crt.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/fuzz/fuzz_x509csr.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /externals/mbedtls/programs/test/cmake_subproject/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | Makefile 3 | cmake_subproject 4 | -------------------------------------------------------------------------------- /externals/mbedtls/tests/.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | mbedtls.run_job() 2 | -------------------------------------------------------------------------------- /externals/mbedtls/tests/data_files/base64/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/mbedtls/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/mbedtls/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /externals/sirit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/CMakeLists.txt -------------------------------------------------------------------------------- /externals/sirit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/LICENSE.txt -------------------------------------------------------------------------------- /externals/sirit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/README.md -------------------------------------------------------------------------------- /externals/sirit/externals/SPIRV-Headers/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | out 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /externals/sirit/externals/SPIRV-Headers/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sirit/src/.gitignore: -------------------------------------------------------------------------------- 1 | sirit.h 2 | -------------------------------------------------------------------------------- /externals/sirit/src/sirit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/src/sirit.cpp -------------------------------------------------------------------------------- /externals/sirit/src/stream.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sirit/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/src/stream.h -------------------------------------------------------------------------------- /externals/sirit/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/sirit/tests/main.cpp -------------------------------------------------------------------------------- /externals/soundtouch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/externals/soundtouch/README.md -------------------------------------------------------------------------------- /glad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/glad/Readme.md -------------------------------------------------------------------------------- /glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/glad/include/glad/glad.h -------------------------------------------------------------------------------- /glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/glad/src/glad.c -------------------------------------------------------------------------------- /hlaunch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/hlaunch.c -------------------------------------------------------------------------------- /horizon_servctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/horizon_servctl.h -------------------------------------------------------------------------------- /input_common/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/keyboard.cpp -------------------------------------------------------------------------------- /input_common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/keyboard.h -------------------------------------------------------------------------------- /input_common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/main.cpp -------------------------------------------------------------------------------- /input_common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/main.h -------------------------------------------------------------------------------- /input_common/motion_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/motion_input.cpp -------------------------------------------------------------------------------- /input_common/motion_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/motion_input.h -------------------------------------------------------------------------------- /input_common/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/sdl/sdl.cpp -------------------------------------------------------------------------------- /input_common/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/sdl/sdl.h -------------------------------------------------------------------------------- /input_common/sdl/sdl_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/sdl/sdl_impl.cpp -------------------------------------------------------------------------------- /input_common/sdl/sdl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/sdl/sdl_impl.h -------------------------------------------------------------------------------- /input_common/tas/tas_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/tas/tas_input.cpp -------------------------------------------------------------------------------- /input_common/tas/tas_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/tas/tas_input.h -------------------------------------------------------------------------------- /input_common/tas/tas_poller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/tas/tas_poller.cpp -------------------------------------------------------------------------------- /input_common/tas/tas_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/tas/tas_poller.h -------------------------------------------------------------------------------- /input_common/udp/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/client.cpp -------------------------------------------------------------------------------- /input_common/udp/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/client.h -------------------------------------------------------------------------------- /input_common/udp/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/protocol.cpp -------------------------------------------------------------------------------- /input_common/udp/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/protocol.h -------------------------------------------------------------------------------- /input_common/udp/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/udp.cpp -------------------------------------------------------------------------------- /input_common/udp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/input_common/udp/udp.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/license.txt -------------------------------------------------------------------------------- /mizu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/mizu.cpp -------------------------------------------------------------------------------- /mizu.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/mizu.service -------------------------------------------------------------------------------- /shader_recompiler/backend/glasm/emit_glasm_barriers.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shader_recompiler/backend/glasm/emit_glasm_control_flow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shader_recompiler/backend/glasm/emit_glasm_logical.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shader_recompiler/backend/glasm/emit_glasm_special.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shader_recompiler/backend/glasm/emit_glasm_undefined.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shader_recompiler/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/environment.h -------------------------------------------------------------------------------- /shader_recompiler/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/exception.h -------------------------------------------------------------------------------- /shader_recompiler/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/object_pool.h -------------------------------------------------------------------------------- /shader_recompiler/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/profile.h -------------------------------------------------------------------------------- /shader_recompiler/shader_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/shader_info.h -------------------------------------------------------------------------------- /shader_recompiler/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/shader_recompiler/stage.h -------------------------------------------------------------------------------- /video_core/bootmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/bootmanager.cpp -------------------------------------------------------------------------------- /video_core/bootmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/bootmanager.h -------------------------------------------------------------------------------- /video_core/cdma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/cdma_pusher.cpp -------------------------------------------------------------------------------- /video_core/cdma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/cdma_pusher.h -------------------------------------------------------------------------------- /video_core/compatible_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/compatible_formats.h -------------------------------------------------------------------------------- /video_core/dirty_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/dirty_flags.cpp -------------------------------------------------------------------------------- /video_core/dirty_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/dirty_flags.h -------------------------------------------------------------------------------- /video_core/dma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/dma_pusher.cpp -------------------------------------------------------------------------------- /video_core/dma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/dma_pusher.h -------------------------------------------------------------------------------- /video_core/engines/fermi_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/engines/fermi_2d.cpp -------------------------------------------------------------------------------- /video_core/engines/fermi_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/engines/fermi_2d.h -------------------------------------------------------------------------------- /video_core/engines/maxwell_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/engines/maxwell_3d.h -------------------------------------------------------------------------------- /video_core/fence_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/fence_manager.h -------------------------------------------------------------------------------- /video_core/framebuffer_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/framebuffer_config.h -------------------------------------------------------------------------------- /video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/gpu.cpp -------------------------------------------------------------------------------- /video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/gpu.h -------------------------------------------------------------------------------- /video_core/gpu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/gpu_thread.cpp -------------------------------------------------------------------------------- /video_core/gpu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/gpu_thread.h -------------------------------------------------------------------------------- /video_core/macro/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/macro/macro.cpp -------------------------------------------------------------------------------- /video_core/macro/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/macro/macro.h -------------------------------------------------------------------------------- /video_core/macro/macro_hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/macro/macro_hle.cpp -------------------------------------------------------------------------------- /video_core/macro/macro_hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/macro/macro_hle.h -------------------------------------------------------------------------------- /video_core/memory_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/memory_manager.cpp -------------------------------------------------------------------------------- /video_core/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/memory_manager.h -------------------------------------------------------------------------------- /video_core/query_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/query_cache.h -------------------------------------------------------------------------------- /video_core/renderer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/renderer_base.cpp -------------------------------------------------------------------------------- /video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/renderer_base.h -------------------------------------------------------------------------------- /video_core/shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/shader_cache.cpp -------------------------------------------------------------------------------- /video_core/shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/shader_cache.h -------------------------------------------------------------------------------- /video_core/shader_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/shader_environment.h -------------------------------------------------------------------------------- /video_core/shader_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/shader_notify.cpp -------------------------------------------------------------------------------- /video_core/shader_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/shader_notify.h -------------------------------------------------------------------------------- /video_core/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/surface.cpp -------------------------------------------------------------------------------- /video_core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/surface.h -------------------------------------------------------------------------------- /video_core/texture_cache/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/texture_cache/util.h -------------------------------------------------------------------------------- /video_core/textures/astc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/textures/astc.cpp -------------------------------------------------------------------------------- /video_core/textures/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/textures/astc.h -------------------------------------------------------------------------------- /video_core/textures/decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/textures/decoders.h -------------------------------------------------------------------------------- /video_core/textures/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/textures/texture.cpp -------------------------------------------------------------------------------- /video_core/textures/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/textures/texture.h -------------------------------------------------------------------------------- /video_core/transform_feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/transform_feedback.h -------------------------------------------------------------------------------- /video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/video_core.cpp -------------------------------------------------------------------------------- /video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentjhall/mizu/HEAD/video_core/video_core.h --------------------------------------------------------------------------------