2016-08-25 04:15:38 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConfigureGraphics</class>
<widget class="QWidget" name="ConfigureGraphics">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
2019-08-09 20:00:47 +02:00
<height>603</height>
2016-08-25 04:15:38 +02:00
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
2018-05-06 15:36:49 +02:00
<item>
<widget class="QGroupBox" name="rendererBox">
<property name="title">
<string>Renderer</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QCheckBox" name="toggle_hw_renderer">
2018-05-14 09:15:21 +02:00
<property name="toolTip">
<string><html><head/><body><p>Use OpenGL to accelerate rendering.</p><p>Disable to debug graphics-related problem.</p></body></html></string>
</property>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Enable Hardware Renderer</string>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="hw_renderer_group" native="true">
<layout class="QVBoxLayout" name="verticalLayout_5">
<property name="leftMargin">
<number>16</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Internal Resolution</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="resolution_factor_combobox">
<item>
<property name="text">
<string>Auto (Window Size)</string>
</property>
</item>
<item>
<property name="text">
<string>Native (400x240)</string>
</property>
</item>
<item>
<property name="text">
<string>2x Native (800x480)</string>
</property>
</item>
<item>
<property name="text">
<string>3x Native (1200x720)</string>
</property>
</item>
<item>
<property name="text">
<string>4x Native (1600x960)</string>
</property>
</item>
<item>
<property name="text">
<string>5x Native (2000x1200)</string>
</property>
</item>
<item>
<property name="text">
<string>6x Native (2400x1440)</string>
</property>
</item>
<item>
<property name="text">
<string>7x Native (2800x1680)</string>
</property>
</item>
<item>
<property name="text">
<string>8x Native (3200x1920)</string>
</property>
</item>
<item>
<property name="text">
<string>9x Native (3600x2160)</string>
</property>
</item>
<item>
<property name="text">
<string>10x Native (4000x2400)</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QCheckBox" name="toggle_hw_shader">
2018-05-14 09:15:21 +02:00
<property name="toolTip">
<string><html><head/><body><p>Use OpenGL to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html></string>
</property>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Enable Hardware Shader</string>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="hw_shader_group" native="true">
<layout class="QVBoxLayout" name="verticalLayout_7">
<property name="leftMargin">
<number>16</number>
2018-01-26 06:24:40 +01:00
</property>
2018-05-06 15:36:49 +02:00
<property name="topMargin">
<number>0</number>
2018-01-26 06:24:40 +01:00
</property>
2018-05-06 15:36:49 +02:00
<property name="rightMargin">
<number>0</number>
2018-01-26 06:24:40 +01:00
</property>
2018-05-06 15:36:49 +02:00
<property name="bottomMargin">
<number>0</number>
2018-01-26 06:24:40 +01:00
</property>
<item>
2018-05-06 15:36:49 +02:00
<widget class="QCheckBox" name="toggle_accurate_mul">
2018-05-14 09:15:21 +02:00
<property name="toolTip">
<string><html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html></string>
</property>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Accurate Multiplication</string>
</property>
</widget>
2018-01-26 06:24:40 +01:00
</item>
2018-05-06 15:36:49 +02:00
</layout>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QCheckBox" name="toggle_shader_jit">
2018-05-14 09:15:21 +02:00
<property name="toolTip">
<string><html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html></string>
</property>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Enable Shader JIT</string>
</property>
</widget>
</item>
2019-08-09 20:00:47 +02:00
<item>
<widget class="QCheckBox" name="toggle_linear_filter">
<property name="text">
<string>Enable Linear Filtering</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_11">
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Post-Processing Shader</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="shader_combobox"/>
</item>
</layout>
</item>
2018-05-06 15:36:49 +02:00
</layout>
</widget>
2016-05-03 08:07:17 +02:00
</item>
<item>
2019-08-09 20:00:47 +02:00
<widget class="QGroupBox" name="groupBox">
2016-05-03 08:07:17 +02:00
<property name="title">
2019-08-09 20:00:47 +02:00
<string>Stereoscopy</string>
2016-05-03 08:07:17 +02:00
</property>
2019-08-09 20:00:47 +02:00
<layout class="QVBoxLayout" name="verticalLayout_4">
2018-04-06 15:21:01 +02:00
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
2019-08-09 20:00:47 +02:00
<widget class="QLabel" name="label_4">
<property name="text">
<string>Stereoscopic 3D Mode</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="render_3d_combobox">
<item>
<property name="text">
<string>Off</string>
</property>
</item>
<item>
<property name="text">
<string>Side by Side</string>
</property>
</item>
<item>
<property name="text">
<string>Anaglyph</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QLabel" name="label_3">
2018-04-06 15:21:01 +02:00
<property name="text">
2019-08-09 20:00:47 +02:00
<string>Depth</string>
2018-04-06 15:21:01 +02:00
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="factor_3d">
<property name="suffix">
<string>%</string>
</property>
<property name="minimum">
<number>0</number>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="value">
<number>0</number>
</property>
</widget>
</item>
</layout>
</item>
2019-08-09 20:00:47 +02:00
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="layoutBox">
<property name="title">
<string>Layout</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
2016-05-03 08:07:17 +02:00
<item>
2018-05-06 15:36:49 +02:00
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<widget class="QLabel" name="label1">
<property name="text">
<string>Screen Layout:</string>
</property>
</widget>
</item>
2016-05-03 08:07:17 +02:00
<item>
2018-05-06 15:36:49 +02:00
<widget class="QComboBox" name="layout_combobox">
2016-05-03 08:07:17 +02:00
<item>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Default</string>
</property>
2016-05-03 08:07:17 +02:00
</item>
<item>
2018-05-06 15:36:49 +02:00
<property name="text">
<string>Single Screen</string>
</property>
</item>
<item>
<property name="text">
<string>Large Screen</string>
</property>
</item>
<item>
<property name="text">
<string>Side by Side</string>
</property>
2016-05-03 08:07:17 +02:00
</item>
</widget>
</item>
2016-08-25 04:15:38 +02:00
</layout>
2016-05-03 08:07:17 +02:00
</item>
2018-05-06 15:36:49 +02:00
<item>
<widget class="QCheckBox" name="swap_screen">
<property name="text">
<string>Swap Screens</string>
</property>
</widget>
</item>
2018-08-02 05:36:47 +02:00
<item>
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QLabel" name="bg_label">
<property name="text">
<string>Background Color:</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="bg_button">
<property name="maximumSize">
<size>
<width>40</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
2016-05-03 08:07:17 +02:00
</layout>
</widget>
2016-08-25 04:15:38 +02:00
</item>
2019-04-03 02:57:13 +02:00
<item>
<widget class="QGroupBox" name="utilityBox">
<property name="title">
<string>Utility</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
2019-08-06 14:43:24 +02:00
<item>
<widget class="QCheckBox" name="toggle_custom_textures">
<property name="toolTip">
<string><html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html></string>
</property>
<property name="text">
<string>Use Custom Textures (Hardware Renderer only)</string>
</property>
</widget>
</item>
2019-04-03 02:57:13 +02:00
<item>
<widget class="QCheckBox" name="toggle_dump_textures">
<property name="toolTip">
<string><html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html></string>
</property>
<property name="text">
<string>Dump Textures (Hardware Renderer only)</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
2016-08-25 04:15:38 +02:00
</layout>
</widget>
<resources/>
2018-05-06 15:36:49 +02:00
<connections/>
2016-08-25 04:15:38 +02:00
</ui>