mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-07 03:55:33 +00:00
53 lines
2.2 KiB
XML
53 lines
2.2 KiB
XML
<!--
|
|
~ Copyright 2018 The app 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.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<ListPreference
|
|
app:key="Display/CropMode"
|
|
app:title="Crop Mode"
|
|
app:entries="@array/settings_display_crop_mode_entries"
|
|
app:entryValues="@array/settings_display_crop_mode_values"
|
|
app:defaultValue="Overscan"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<ListPreference
|
|
app:key="Display/AspectRatio"
|
|
app:title="Aspect Ratio"
|
|
app:entries="@array/settings_display_aspect_ratio_names"
|
|
app:entryValues="@array/settings_display_aspect_ratio_values"
|
|
app:defaultValue="4:3"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="Display/LinearFiltering"
|
|
app:title="Linear Upscaling"
|
|
app:defaultValue="true"
|
|
app:summary="Smooths out the image when upscaling the console to the screen."
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="Display/IntegerScaling"
|
|
app:title="Integer Upscaling"
|
|
app:defaultValue="false"
|
|
app:summary="Adds padding to the display area to ensure that the ratio between pixels on the host to pixels in the console is an integer number. May result in a sharper image in some 2D games."
|
|
app:iconSpaceReserved="false" />
|
|
|
|
</PreferenceScreen>
|