2019-07-03 01:19:45 +02:00
|
|
|
<!--
|
|
|
|
~ Copyright 2018 The Android Open Source Project
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-07-03 01:19:45 +02:00
|
|
|
<PreferenceCategory
|
2019-12-10 21:51:02 +01:00
|
|
|
android:key="category_emulator"
|
|
|
|
android:title="@string/emulator">
|
2019-12-02 14:41:23 +01:00
|
|
|
<emu.skyline.utility.FolderPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
app:key="search_location"
|
|
|
|
app:title="@string/search_location"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2019-12-10 21:51:02 +01:00
|
|
|
<emu.skyline.utility.ThemePreference
|
|
|
|
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" />
|
2019-07-24 22:19:43 +02:00
|
|
|
<ListPreference
|
2019-09-14 14:41:00 +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
|
|
|
|
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>
|
2019-09-27 18:09:48 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_system"
|
|
|
|
android:title="@string/system">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="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
|
|
|
android:summaryOff="@string/handheld_enabled"
|
2019-09-27 18:09:48 +02:00
|
|
|
android:summaryOn="@string/docked_enabled"
|
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
|
|
|
app:key="operation_mode"
|
|
|
|
app:title="@string/use_docked" />
|
2019-09-27 18:09:48 +02:00
|
|
|
</PreferenceCategory>
|
2019-07-03 01:19:45 +02:00
|
|
|
</androidx.preference.PreferenceScreen>
|