Skip to content

Commit

Permalink
Merge pull request #18572 from hrydgard/disable-range-culling-hack
Browse files Browse the repository at this point in the history
Add "Disable culling" as a speedhack for experimentation
  • Loading branch information
hrydgard committed Dec 18, 2023
2 parents e64299f + d5080c2 commit ffa3529
Show file tree
Hide file tree
Showing 48 changed files with 56 additions and 1 deletion.
1 change: 1 addition & 0 deletions Core/Config.cpp
Expand Up @@ -602,6 +602,7 @@ static const ConfigSetting graphicsSettings[] = {
ConfigSetting("VendorBugChecksEnabled", &g_Config.bVendorBugChecksEnabled, true, CfgFlag::DONT_SAVE),
ConfigSetting("UseGeometryShader", &g_Config.bUseGeometryShader, false, CfgFlag::PER_GAME),
ConfigSetting("SkipBufferEffects", &g_Config.bSkipBufferEffects, false, CfgFlag::PER_GAME | CfgFlag::REPORT),
ConfigSetting("DisableRangeCulling", &g_Config.bDisableRangeCulling, false, CfgFlag::PER_GAME | CfgFlag::REPORT),
ConfigSetting("SoftwareRenderer", &g_Config.bSoftwareRendering, false, CfgFlag::PER_GAME),
ConfigSetting("SoftwareRendererJit", &g_Config.bSoftwareRenderingJit, true, CfgFlag::PER_GAME),
ConfigSetting("HardwareTransform", &g_Config.bHardwareTransform, true, CfgFlag::PER_GAME | CfgFlag::REPORT),
Expand Down
1 change: 1 addition & 0 deletions Core/Config.h
Expand Up @@ -166,6 +166,7 @@ struct Config {

// Speedhacks (more will be moved here):
bool bSkipBufferEffects;
bool bDisableRangeCulling;

int iTexFiltering; // 1 = auto , 2 = nearest , 3 = linear , 4 = auto max quality

Expand Down
2 changes: 1 addition & 1 deletion GPU/GPUCommonHW.cpp
Expand Up @@ -603,7 +603,7 @@ u32 GPUCommonHW::CheckGPUFeatures() const {

bool canClipOrCull = draw_->GetDeviceCaps().clipDistanceSupported || draw_->GetDeviceCaps().cullDistanceSupported;
bool canDiscardVertex = !draw_->GetBugs().Has(Draw::Bugs::BROKEN_NAN_IN_CONDITIONAL);
if (canClipOrCull || canDiscardVertex) {
if ((canClipOrCull || canDiscardVertex) && !g_Config.bDisableRangeCulling) {
// We'll dynamically use the parts that are supported, to reduce artifacts as much as possible.
features |= GPU_USE_VS_RANGE_CULLING;
}
Expand Down
8 changes: 8 additions & 0 deletions UI/EmuScreen.cpp
Expand Up @@ -410,6 +410,14 @@ void EmuScreen::bootComplete() {
#endif
}

if (g_Config.bStereoRendering) {
auto gr = GetI18NCategory(I18NCat::GRAPHICS);
auto di = GetI18NCategory(I18NCat::DIALOG);
// Stereo rendering is experimental, so let's notify the user it's being used.
// Carefully reuse translations for this rare warning.
g_OSD.Show(OSDType::MESSAGE_WARNING, std::string(gr->T("Stereo rendering")) + ": " + di->T("Enabled"));
}

saveStateSlot_ = SaveState::GetCurrentSlot();

loadingViewColor_->Divert(0x00FFFFFF, 0.2f);
Expand Down
2 changes: 2 additions & 0 deletions UI/GameSettingsScreen.cpp
Expand Up @@ -428,6 +428,8 @@ void GameSettingsScreen::CreateGraphicsSettings(UI::ViewGroup *graphicsSettings)
});
skipBufferEffects->SetDisabledPtr(&g_Config.bSoftwareRendering);

graphicsSettings->Add(new CheckBox(&g_Config.bDisableRangeCulling, gr->T("Disable culling")));

static const char *skipGpuReadbackModes[] = { "No (default)", "Skip", "Copy to texture" };

PopupMultiChoice *skipGPUReadbacks = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iSkipGPUReadbackMode, gr->T("Skip GPU Readbacks"), skipGpuReadbackModes, 0, ARRAY_SIZE(skipGpuReadbackModes), I18NCat::GRAPHICS, screenManager()));
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ar_AE.ini
Expand Up @@ -597,6 +597,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ‎أظهر مُعدل النسق
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/az_AZ.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/bg_BG.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ca_ES.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Arregla petits errors a les textures causades per l'escalat
Device = Dispositiu
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Desactivat
Display Layout && Effects = Editor de l'àrea de pantalla
Display Resolution (HW scaler) = Resolució de pantalla (escalat per maquinari)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/cz_CZ.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Zobrazit editor rozvržení
Display Resolution (HW scaler) = Rozlišení obrazovky (Hardwarové zvětšení)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/da_DK.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Retter visuel banding fejl in opskalerede textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Skærmopløsning (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/de_DE.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Behebt visuelle Artifakte von hochskalierten Texturen
Device = Gerät
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Deaktiviert
Display Layout && Effects = Bildschirmlayout Editor
Display Resolution (HW scaler) = Bildschirmauflösung (HW Skalierung)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/dr_ID.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/en_US.ini
Expand Up @@ -595,6 +595,7 @@ Balanced = Balanced
Bicubic = Bicubic
Copy to texture = Copy to texture
Current GPU Driver = Current GPU Driver
Disable culling = Disable culling
GPUReadbackRequired = Warning: This game requires "Skip GPU Readbacks" to be set to Off.
Both = Both
Buffer graphics commands (faster, input lag) = Buffer graphics commands (faster, input lag)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/es_ES.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Arregla pequeños errores en las texturas causadas por el esca
Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Desactivado
Display Layout && Effects = Editar pantalla y Shaders
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/es_LA.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Arregla glitches de banda visual en texturas causadas por el e
Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Apagado
Display Layout && Effects = Editar pantalla y Shaders
Display Resolution (HW scaler) = Resolución de pantalla (escalado por HW)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/fa_IR.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = ‎مشکل نواری شدن در تکسچر های تغیی
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ‎ویرایشگر چیدمان صفحه
Display Resolution (HW scaler) = ‎رزولوشن صفحه
Expand Down
1 change: 1 addition & 0 deletions assets/lang/fi_FI.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Korjaa visuaaliset viivamaiset häiriöt ylöskaalattujen teks
Device = Laite
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Poistettu käytöstä
Display Layout && Effects = Näyttöasettelu ja -efektit
Display Resolution (HW scaler) = Näyttöresoluutio (Laitteiston skaalaaja)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/fr_FR.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Corrige le bug graphique qui fait apparaître des bandes dans
Device = Appareil
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Désactivé
Display Layout && Effects = Éditeur d'affichage
Display Resolution (HW scaler) = Définition d'affichage (mise à l'échelle matérielle)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/gl_ES.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/gr_EL.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Διορθώνει μικρές ατέλειες υφών με
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Απενεργοποιημένο
Display Layout && Effects = Επεξεργασία διάταξης οθόνης
Display Resolution (HW scaler) = Ανάλυση οθόνης (Κλιμακοτής hardware)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/he_IL.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/he_IL_invert.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/hr_HR.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Popravlja vizualne banding glitcheve u podignutim teksturama
Device = Uređaj
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Isključeno
Display Layout && Effects = Prikaz layout uređivača
Display Resolution (HW scaler) = Prikaz rezolucije (HW mjeritelj)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/hu_HU.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Skálázásból eredő kisebb textúra hibák megszüntetése.
Device = Eszköz
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Letiltva
Display Layout && Effects = Elrendezés szerkesztő
Display Resolution (HW scaler) = Megjelenítési felbontás (HW skálázó)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/id_ID.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Memperbaiki gangguan pita visual pada tekstur yang ditingkatka
Device = Perangkat
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Nonaktif
Display Layout && Effects = Penyesuaian tata letak tampilan
Display Resolution (HW scaler) = Resolusi tampilan (penskala HW)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/it_IT.ini
Expand Up @@ -590,6 +590,7 @@ Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
#Disable slower effects (speedup) = Disattiva gli effetti più lenti (veloce)
Disable culling = Disable culling
Disabled = Disabilitato
Display Layout && Effects = Editor Display
Display Resolution (HW scaler) = Risoluzione Display (scaler HW)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ja_JP.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = アップスケールされたテクスチャのバンディ
Device = デバイス
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = 無効
Display Layout && Effects = 画面のレイアウトを編集する
Display Resolution (HW scaler) = 画面解像度 (HWスケーラー)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/jv_ID.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Tata letak Tampilan editor
Display Resolution (HW scaler) = Resolusi tampilan (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ko_KR.ini
Expand Up @@ -571,6 +571,7 @@ Balanced = 평형
Bicubic = 고등차수보간
Copy to texture = Copy to texture
Current GPU Driver = Current GPU Driver
Disable culling = Disable culling
GPUReadbackRequired = 경고: 이 게임은 "GPU 다시 읽기 건너뛰기"를 꺼짐으로 설정해야 합니다.
Both = 둘 다
Buffer graphics commands (faster, input lag) = 버퍼 그래픽 명령 (빠름, 입력 지연)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/lo_LA.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = ແກ້ໄຂການສະແດງຜົນຜິດພ
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ແກ້ໄຂຮູບແບບໜ້າຈໍ
Display Resolution (HW scaler) = ຄວາມລະອຽດໜ້າຈໍ (ຕາມຮາດແວຣ໌)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/lt-LT.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Ekrano rezoliucija ("HW" ištiesinimas)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ms_MY.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/nl_NL.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Verhelpt visuele streepglitches in opgeschaalde textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Schermweergave bewerken
Display Resolution (HW scaler) = Schermresolutie (hardware)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/no_NO.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/pl_PL.ini
Expand Up @@ -594,6 +594,7 @@ Deposterize Tip = Poprawia banding koloru na przeskalowanych teksturach
Device = Urządzenie
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Wył.
Display Layout && Effects = Edytor położenia obrazu
Display Resolution (HW scaler) = Rozdzielczość ekranu (skaler sprz.)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/pt_BR.ini
Expand Up @@ -595,6 +595,7 @@ Balanced = Balanceado
Bicubic = Bi-cúbico
Copy to texture = Copy to texture
Current GPU Driver = Current GPU Driver
Disable culling = Disable culling
GPUReadbackRequired = Aviso: Este jogo requer "Ignorar Leituras da GPU" pra ser configurado como Desligado.
Both = Ambos
Buffer graphics commands (faster, input lag) = Buffer dos comandos dos gráficos (mais rápido, atraso na entrada dos dados)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/pt_PT.ini
Expand Up @@ -613,6 +613,7 @@ Deposterize Tip = Conserta erros gráficos visuais das faixas nas texturas ampli
Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Desativado
Display Layout && Effects = Mostrar o editor dos esquemas
Display Resolution (HW scaler) = Resolução da tela (Dimensionador do hardware)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ro_RO.ini
Expand Up @@ -590,6 +590,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Rezoluție ecran (scalare HW)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/ru_RU.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Исправляет полосатость в масштаб
Device = Устройство
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Отключено
Display Layout && Effects = Редактор расположения экрана и эффектов
Display Resolution (HW scaler) = Разрешение экрана (аппаратное)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/sv_SE.ini
Expand Up @@ -590,6 +590,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Enhet
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Avstängd
Display Layout && Effects = Skärmlayout och effekter
Display Resolution (HW scaler) = Skärmupplösning (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/tg_PH.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/th_TH.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = แก้ไขขอบภาพเบลอ หรือภ
Device = การ์ดจอ
Direct3D 9 = ไดเร็คท์ 3D 9
Direct3D 11 = ไดเร็คท์ 3D 11
Disable culling = Disable culling
Disabled = ปิดการใช้งาน
Display Layout && Effects = รูปแบบหน้าจอ และเอฟเฟ็คท์
Display Resolution (HW scaler) = ความละเอียดหน้าจอ (ตามฮาร์ดแวร์)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/tr_TR.ini
Expand Up @@ -591,6 +591,7 @@ Deposterize Tip = Yeniden ölçeklenen dokulardaki görsel şerit hatalarını d
Device = Cihaz
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Devre dışı
Display Layout && Effects = Görüntü Düzeni Düzenleyicisi
Display Resolution (HW scaler) = Görüntü Çözünürlüğü (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/uk_UA.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Виправляє візуальні глюки в масшт
Device = Пристрій
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Вимкнено
Display Layout && Effects = Редактор розташування екрану
Display Resolution (HW scaler) = Розширення екрану (HW масштабування)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/vi_VN.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = Sửa lỗi trục trặc hình ảnh trong textures
Device = Thiết bị
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Vô hiệu hóa
Display Layout && Effects = Chỉnh bố trí hiển thị
Display Resolution (HW scaler) = Độ phân giải màn hình (HW scaler)
Expand Down
1 change: 1 addition & 0 deletions assets/lang/zh_CN.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = 修复纹理被放大时可见的缝隙
Device = 设备
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = 禁用
Display Layout && Effects = 屏幕布局和滤镜
Display Resolution (HW scaler) = 屏幕分辨率
Expand Down
1 change: 1 addition & 0 deletions assets/lang/zh_TW.ini
Expand Up @@ -589,6 +589,7 @@ Deposterize Tip = 修正放大化紋理中的視覺帶狀故障
Device = 裝置
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = 顯示版面配置與效果
Display Resolution (HW scaler) = 顯示解析度 (硬體縮放)
Expand Down

0 comments on commit ffa3529

Please sign in to comment.