2013-05-20 07:57:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:summary="Settings"
|
2013-07-11 15:18:03 +00:00
|
|
|
android:title="CPU Settings"
|
|
|
|
android:key="cpuprefcat">
|
2013-05-20 07:57:39 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="dualcorepref"
|
|
|
|
android:summary="On/Off"
|
|
|
|
android:title="Dual Core" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:summary="Settings"
|
|
|
|
android:title="Video Settings" >
|
|
|
|
<ListPreference
|
|
|
|
android:entries="@array/gpuOptions"
|
|
|
|
android:entryValues="@array/gpuValues"
|
|
|
|
android:key="gpupref"
|
|
|
|
android:summary="Video backend to use"
|
|
|
|
android:title="Video Backend" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|