mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-24 04:37:42 +02:00
Merge branch 'master_PR_UI' into 'master'
Moved "Graphics Backend Multitreading" item to Graphics API & Optimization section See merge request ryubing/ryujinx!13
This commit is contained in:
commit
6086552d93
2 changed files with 42 additions and 47 deletions
|
@ -5425,26 +5425,26 @@
|
||||||
{
|
{
|
||||||
"ID": "SettingsTabGraphicsAPI",
|
"ID": "SettingsTabGraphicsAPI",
|
||||||
"Translations": {
|
"Translations": {
|
||||||
"ar_SA": "API الرسومات ",
|
"ar_SA": "API الرسومات و تحسين",
|
||||||
"de_DE": "Grafik-API",
|
"de_DE": "Grafik-API & Optimierung",
|
||||||
"el_GR": "API Γραφικά",
|
"el_GR": "API Γραφικά & Βελτιστοποίηση",
|
||||||
"en_US": "Graphics API",
|
"en_US": "Graphics API & Optimization",
|
||||||
"es_ES": "API de gráficos",
|
"es_ES": "API de gráficos & Optimización",
|
||||||
"fr_FR": "API Graphique",
|
"fr_FR": "API Graphique & Optimisation",
|
||||||
"he_IL": "ממשק גראפי",
|
"he_IL": "ממשק גראפי & אופטימיזציה",
|
||||||
"it_IT": "API grafica",
|
"it_IT": "API grafica & Ottimizzazione",
|
||||||
"ja_JP": "グラフィックスAPI",
|
"ja_JP": "グラフィックスAPI&最適化",
|
||||||
"ko_KR": "그래픽 API",
|
"ko_KR": "그래픽 API & 최적화",
|
||||||
"no_NO": "Grafikk API",
|
"no_NO": "Grafikk-API & Optimalisering",
|
||||||
"pl_PL": "Graficzne API",
|
"pl_PL": "Graficzne API & Optymalizacja",
|
||||||
"pt_BR": "API gráfica",
|
"pt_BR": "API gráfica & Otimização",
|
||||||
"ru_RU": "Графические API",
|
"ru_RU": "Графический API & Оптимизация",
|
||||||
"sv_SE": "Grafik-API",
|
"sv_SE": "Grafik-API & Optimering",
|
||||||
"th_TH": "API กราฟฟิก",
|
"th_TH": "API กราฟฟิก & การเพิ่มประสิทธิภาพ",
|
||||||
"tr_TR": "Grafikler API",
|
"tr_TR": "Grafikler API & Optimizasyon",
|
||||||
"uk_UA": "Графічний API",
|
"uk_UA": "Графічний API & Оптимізація",
|
||||||
"zh_CN": "图形 API",
|
"zh_CN": "图形 API & 优化",
|
||||||
"zh_TW": "圖形 API"
|
"zh_TW": "圖形 API & 優化"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -56,6 +56,26 @@
|
||||||
SelectedIndex="{Binding PreferredGpuIndex}"
|
SelectedIndex="{Binding PreferredGpuIndex}"
|
||||||
ItemsSource="{Binding AvailableGpus}"/>
|
ItemsSource="{Binding AvailableGpus}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<TextBlock VerticalAlignment="Center"
|
||||||
|
ToolTip.Tip="{ext:Locale GraphicsBackendThreadingTooltip}"
|
||||||
|
Text="{ext:Locale SettingsTabGraphicsBackendMultithreading}"
|
||||||
|
Width="250" />
|
||||||
|
<ComboBox Width="350"
|
||||||
|
HorizontalContentAlignment="Left"
|
||||||
|
ToolTip.Tip="{ext:Locale GalThreadingTooltip}"
|
||||||
|
SelectedIndex="{Binding GraphicsBackendMultithreadingIndex}">
|
||||||
|
<ComboBoxItem>
|
||||||
|
<TextBlock Text="{ext:Locale CommonAuto}" />
|
||||||
|
</ComboBoxItem>
|
||||||
|
<ComboBoxItem>
|
||||||
|
<TextBlock Text="{ext:Locale CommonOff}" />
|
||||||
|
</ComboBoxItem>
|
||||||
|
<ComboBoxItem>
|
||||||
|
<TextBlock Text="{ext:Locale CommonOn}" />
|
||||||
|
</ComboBoxItem>
|
||||||
|
</ComboBox>
|
||||||
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Separator Height="1" />
|
<Separator Height="1" />
|
||||||
<TextBlock Classes="h1" Text="{ext:Locale SettingsTabGraphicsFeatures}" />
|
<TextBlock Classes="h1" Text="{ext:Locale SettingsTabGraphicsFeatures}" />
|
||||||
|
@ -255,32 +275,7 @@
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel
|
|
||||||
Margin="10,0,0,0"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
Orientation="Vertical"
|
|
||||||
Spacing="10">
|
|
||||||
<StackPanel Orientation="Horizontal">
|
|
||||||
<TextBlock VerticalAlignment="Center"
|
|
||||||
ToolTip.Tip="{ext:Locale GraphicsBackendThreadingTooltip}"
|
|
||||||
Text="{ext:Locale SettingsTabGraphicsBackendMultithreading}"
|
|
||||||
Width="250" />
|
|
||||||
<ComboBox Width="350"
|
|
||||||
HorizontalContentAlignment="Left"
|
|
||||||
ToolTip.Tip="{ext:Locale GalThreadingTooltip}"
|
|
||||||
SelectedIndex="{Binding GraphicsBackendMultithreadingIndex}">
|
|
||||||
<ComboBoxItem>
|
|
||||||
<TextBlock Text="{ext:Locale CommonAuto}" />
|
|
||||||
</ComboBoxItem>
|
|
||||||
<ComboBoxItem>
|
|
||||||
<TextBlock Text="{ext:Locale CommonOff}" />
|
|
||||||
</ComboBoxItem>
|
|
||||||
<ComboBoxItem>
|
|
||||||
<TextBlock Text="{ext:Locale CommonOn}" />
|
|
||||||
</ComboBoxItem>
|
|
||||||
</ComboBox>
|
|
||||||
</StackPanel>
|
|
||||||
</StackPanel>
|
|
||||||
<Separator Height="1" />
|
<Separator Height="1" />
|
||||||
<TextBlock Classes="h1" Text="{ext:Locale SettingsTabGraphicsDeveloperOptions}" />
|
<TextBlock Classes="h1" Text="{ext:Locale SettingsTabGraphicsDeveloperOptions}" />
|
||||||
<StackPanel
|
<StackPanel
|
||||||
|
|
Loading…
Add table
Reference in a new issue