2019-07-03 01:19:45 +02:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-20 00:14:43 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-07-03 01:19:45 +02:00
|
|
|
<PreferenceCategory
|
2021-06-20 00:14:43 +02:00
|
|
|
android:key="category_emulator"
|
|
|
|
android:title="@string/emulator">
|
2021-02-26 12:41:57 +01:00
|
|
|
<emu.skyline.preference.FolderPickerPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
app:key="search_location"
|
|
|
|
app:title="@string/search_location" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.ThemePreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/app_theme"
|
|
|
|
android:entryValues="@array/app_theme_val"
|
|
|
|
app:key="app_theme"
|
|
|
|
app:title="@string/theme"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-04-12 17:17:51 +02:00
|
|
|
<ListPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/layout_type"
|
|
|
|
android:entryValues="@array/layout_type_val"
|
|
|
|
app:key="layout_type"
|
|
|
|
app:title="@string/layout_type"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-04-17 22:32:17 +02:00
|
|
|
<CheckBoxPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/select_action_desc_off"
|
|
|
|
android:summaryOn="@string/select_action_desc_on"
|
|
|
|
app:key="select_action"
|
|
|
|
app:title="@string/select_action" />
|
2020-04-18 02:16:09 +02:00
|
|
|
<CheckBoxPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/perf_stats_desc_off"
|
|
|
|
android:summaryOn="@string/perf_stats_desc_on"
|
|
|
|
app:key="perf_stats"
|
|
|
|
app:title="@string/perf_stats" />
|
2019-07-24 22:19:43 +02:00
|
|
|
<ListPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/log_level"
|
|
|
|
android:entryValues="@array/log_level_val"
|
|
|
|
app:key="log_level"
|
|
|
|
app:title="@string/log_level"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
<CheckBoxPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/log_compact_desc_off"
|
|
|
|
android:summaryOn="@string/log_compact_desc_on"
|
|
|
|
app:key="log_compact"
|
|
|
|
app:title="@string/log_compact" />
|
2019-07-24 22:19:43 +02:00
|
|
|
</PreferenceCategory>
|
2020-09-14 15:53:40 +02:00
|
|
|
<PreferenceCategory
|
2021-06-20 00:14:43 +02:00
|
|
|
android:key="category_keys"
|
|
|
|
android:title="@string/keys">
|
2021-02-26 12:41:57 +01:00
|
|
|
<emu.skyline.preference.KeyPickerPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
app:key="prod_keys"
|
|
|
|
app:title="@string/prod_keys"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2021-02-26 12:41:57 +01:00
|
|
|
<emu.skyline.preference.KeyPickerPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
app:key="title_keys"
|
|
|
|
app:title="@string/title_keys"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-09-14 15:53:40 +02:00
|
|
|
</PreferenceCategory>
|
2019-09-27 18:09:48 +02:00
|
|
|
<PreferenceCategory
|
2021-06-20 00:14:43 +02:00
|
|
|
android:key="category_system"
|
|
|
|
android:title="@string/system">
|
2019-09-27 18:09:48 +02:00
|
|
|
<CheckBoxPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:summaryOff="@string/handheld_enabled"
|
|
|
|
android:summaryOn="@string/docked_enabled"
|
|
|
|
app:key="operation_mode"
|
|
|
|
app:title="@string/use_docked" />
|
|
|
|
<emu.skyline.preference.CustomEditTextPreference
|
|
|
|
android:defaultValue="@string/username_default"
|
|
|
|
app:key="username_value"
|
|
|
|
app:limit="31"
|
|
|
|
app:title="@string/username" />
|
2021-08-27 18:47:47 +02:00
|
|
|
<emu.skyline.preference.IntegerListPreference
|
2021-08-28 12:30:34 +02:00
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/system_languages"
|
2021-10-13 19:08:48 +02:00
|
|
|
android:entryValues="@array/system_languages_val"
|
2021-08-28 12:30:34 +02:00
|
|
|
app:key="system_language"
|
2021-08-28 11:52:42 +02:00
|
|
|
app:refreshRequired="true"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="@string/system_language"
|
2021-08-28 12:30:34 +02:00
|
|
|
app:useSimpleSummaryProvider="true" />
|
2019-09-27 18:09:48 +02:00
|
|
|
</PreferenceCategory>
|
2020-05-28 21:27:25 +02:00
|
|
|
<PreferenceCategory
|
2021-06-20 00:14:43 +02:00
|
|
|
android:key="category_presentation"
|
|
|
|
android:title="@string/display">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:summaryOff="@string/triple_buffering_disabled"
|
|
|
|
android:summaryOn="@string/triple_buffering_enabled"
|
|
|
|
app:key="force_triple_buffering"
|
|
|
|
app:title="@string/force_triple_buffering" />
|
2020-05-28 21:27:25 +02:00
|
|
|
<CheckBoxPreference
|
2021-06-20 00:14:43 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="force_triple_buffering"
|
|
|
|
android:summaryOff="@string/disable_frame_throttling_disabled"
|
|
|
|
android:summaryOn="@string/disable_frame_throttling_enabled"
|
|
|
|
app:key="disable_frame_throttling"
|
|
|
|
app:title="@string/disable_frame_throttling" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/max_refresh_rate_disabled"
|
|
|
|
android:summaryOn="@string/max_refresh_rate_enabled"
|
|
|
|
app:key="max_refresh_rate"
|
|
|
|
app:title="@string/max_refresh_rate" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_input"
|
|
|
|
android:title="@string/input"
|
|
|
|
app:initialExpandedChildrenCount="4">
|
2020-05-28 21:27:25 +02:00
|
|
|
<emu.skyline.preference.ControllerPreference index="0" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="1" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="2" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="3" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="4" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="5" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="6" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="7" />
|
|
|
|
</PreferenceCategory>
|
2020-03-30 21:39:21 +02:00
|
|
|
<PreferenceCategory
|
2021-06-20 00:14:43 +02:00
|
|
|
android:key="category_licenses"
|
|
|
|
android:title="@string/licenses"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:initialExpandedChildrenCount="5">
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright © 2019-2021 Skyline Team and Contributors (https://github.com/skyline-emu/)"
|
|
|
|
app:libraryLicense="@string/mpl2_license"
|
|
|
|
app:libraryUrl="https://github.com/skyline-emu/skyline"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/skyline_license_description"
|
|
|
|
app:title="@string/app_name" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright (c) Ryujinx Team and Contributors"
|
|
|
|
app:libraryLicense="@string/mit_license"
|
|
|
|
app:libraryUrl="https://github.com/Ryujinx/Ryujinx"
|
|
|
|
app:summary="@string/ryujinx_description"
|
|
|
|
app:title="Ryujinx" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 2015-2020 The Khronos Group Inc."
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/KhronosGroup/Vulkan-Hpp"
|
|
|
|
app:summary="@string/vkhpp_description"
|
|
|
|
app:title="Vulkan-Hpp" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright (c) 2017-2021 Advanced Micro Devices, Inc. All rights reserved."
|
|
|
|
app:libraryLicense="@string/mit_license"
|
|
|
|
app:libraryUrl="https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator"
|
|
|
|
app:summary="@string/vkma_description"
|
|
|
|
app:title="Vulkan Memory Allocator" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright (c) 2015-2019 The Khronos Group Inc.\nCopyright (c) 2015-2019 Valve Corporation\nCopyright (c) 2015-2019 LunarG, Inc."
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/KhronosGroup/Vulkan-ValidationLayers"
|
|
|
|
app:summary="@string/khvkval_description"
|
|
|
|
app:title="Khronos Vulkan Validation Layer" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 2021 The Android Open Source Project"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/google/oboe"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/oboe_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Oboe" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright (c) 2017, The Android Open Source Project"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/google/perfetto"
|
|
|
|
app:summary="@string/perfetto_description"
|
|
|
|
app:title="Perfetto" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright © 2012 - present, Victor Zverovich"
|
|
|
|
app:libraryLicense="@string/libfmt_mit_license"
|
|
|
|
app:libraryUrl="https://github.com/fmtlib/fmt"
|
|
|
|
app:summary="@string/fmtlib_description"
|
|
|
|
app:title="{fmt}" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryLicense="@string/boost_software_license"
|
|
|
|
app:libraryUrl="https://www.boost.org"
|
|
|
|
app:summary="@string/boost_description"
|
|
|
|
app:title="Boost" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 2016 QuarksLab"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/serge-sans-paille/frozen"
|
|
|
|
app:summary="@string/frozen_description"
|
|
|
|
app:title="Frozen" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright (c) 2006-2019 Arseny Kapoulkine"
|
|
|
|
app:libraryLicense="@string/mit_license"
|
|
|
|
app:libraryUrl="https://github.com/zeux/pugixml"
|
|
|
|
app:summary="@string/pugixml_description"
|
|
|
|
app:title="pugixml" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryLicense="@string/opus_bsd_3_clause_license"
|
|
|
|
app:libraryUrl="https://github.com/xiph/opus"
|
|
|
|
app:summary="@string/opus_description"
|
|
|
|
app:title="Opus Audio Codec" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright The Mbed TLS Contributors"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/ARMmbed/mbedtls"
|
|
|
|
app:summary="@string/mbedtls_description"
|
|
|
|
app:title="Mbed TLS" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright (c) 2011-2020, Yann Collet\nAll rights reserved."
|
|
|
|
app:libraryLicense="@string/bsd_2_clause_license"
|
|
|
|
app:libraryUrl="https://github.com/lz4/lz4"
|
|
|
|
app:summary="@string/lz4_description"
|
|
|
|
app:title="LZ4 Library" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 1985, 1987, 1988 The Regents of the University of California.\nAll rights reserved."
|
|
|
|
app:libraryLicense="@string/bsd_3_clause_license"
|
|
|
|
app:libraryUrl="https://github.com/skyline-emu/tz"
|
|
|
|
app:summary="@string/tzcode_description"
|
|
|
|
app:title="tzcode" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 2016 Thibault Debatty"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/tdebatty/java-string-similarity"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/jssim_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Java String Similarity" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright (C) 2021 The Android Open Source Project"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://developer.android.com/jetpack/androidx"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/andx_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="AndroidX" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright (C) 2021 The Android Open Source Project"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/material-components/material-components-android"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/amat_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Android Material Components" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://kotlinlang.org/api/latest/jvm/stdlib"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/ktstd_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Kotlin Standard Library" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
app:libraryCopyright="Copyright 2012-2021 The Dagger Authors"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://github.com/google/dagger"
|
|
|
|
app:summary="@string/dagger_description"
|
|
|
|
app:title="Dagger" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://material.io/resources/icons"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/mtico_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Material Design Icons" />
|
2020-07-04 22:52:07 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryCopyright="Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)"
|
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://fonts.google.com/specimen/Open+Sans"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/open_sans_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Open Sans" />
|
2020-07-04 22:52:07 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryLicense="@string/apache2_license"
|
|
|
|
app:libraryUrl="https://fonts.google.com/specimen/Roboto"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/roboto_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Roboto" />
|
2020-07-04 22:52:07 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2021-10-14 16:18:24 +02:00
|
|
|
app:libraryLicense="@string/sil_open_font_license"
|
|
|
|
app:libraryUrl="https://fonts.google.com/specimen/Source+Sans+Pro"
|
2021-06-20 00:14:43 +02:00
|
|
|
app:summary="@string/source_sans_pro_description"
|
2021-10-14 16:18:24 +02:00
|
|
|
app:title="Source Sans Pro" />
|
2020-01-24 23:04:16 +01:00
|
|
|
</PreferenceCategory>
|
2019-07-03 01:19:45 +02:00
|
|
|
</androidx.preference.PreferenceScreen>
|