OpenXR - Texts review

This commit is contained in:
Lubos 2024-08-05 12:45:42 +02:00
parent 52cf10274c
commit 3a6bf77f6b
50 changed files with 102 additions and 60 deletions

View File

@ -629,6 +629,7 @@ bool StartVRRender() {
// VR flags
bool vrIncompatibleGame = PSP_CoreParameter().compat.vrCompat().ForceFlatScreen;
bool vrMode = (g_Config.bEnableVR || g_Config.bEnableImmersiveVR) && !vrIncompatibleGame;
bool vrScene = !vrFlatForced && (g_Config.bManualForceVR || (vr3DGeometryCount > 15));
bool vrStereo = !PSP_CoreParameter().compat.vrCompat().ForceMono && g_Config.bEnableStereo;
@ -660,16 +661,16 @@ bool StartVRRender() {
M[10] = -1;
M[11] = -(fovHack + fovHack);
M[14] = -(nearZ + nearZ);
if (g_Config.bAntiFlickeringFlow) {
if (g_Config.bEnableImmersiveVR) {
M[0] /= 2.0f;
}
memcpy(vrMatrix[VR_PROJECTION_MATRIX], M, sizeof(float) * 16);
// Decide if the scene is 3D or not
VR_SetConfigFloat(VR_CONFIG_CANVAS_ASPECT, 480.0f / 272.0f);
if (g_Config.bEnableVR && !vrIncompatibleGame && (appMode == VR_GAME_MODE) && vrScene) {
if (vrMode && vrScene && (appMode == VR_GAME_MODE)) {
VR_SetConfig(VR_CONFIG_MODE, vrStereo ? VR_MODE_STEREO_6DOF : VR_MODE_MONO_6DOF);
VR_SetConfig(VR_CONFIG_REPROJECTION, g_Config.bAntiFlickeringFlow ? 0 : 1);
VR_SetConfig(VR_CONFIG_REPROJECTION, g_Config.bEnableImmersiveVR ? 0 : 1);
vrFlatGame = false;
} else if (appMode == VR_GAME_MODE) {
VR_SetConfig(VR_CONFIG_MODE, vrStereo ? VR_MODE_STEREO_SCREEN : VR_MODE_MONO_SCREEN);

View File

@ -958,7 +958,7 @@ static const ConfigSetting vrSettings[] = {
ConfigSetting("VREnableStereo", &g_Config.bEnableStereo, false, CfgFlag::PER_GAME),
ConfigSetting("VREnableMotions", &g_Config.bEnableMotions, true, CfgFlag::PER_GAME),
ConfigSetting("VRForce72Hz", &g_Config.bForce72Hz, true, CfgFlag::PER_GAME),
ConfigSetting("VRAntiFlickeringFlow", &g_Config.bAntiFlickeringFlow, true, CfgFlag::PER_GAME),
ConfigSetting("VRImmersiveMode", &g_Config.bEnableImmersiveVR, true, CfgFlag::PER_GAME),
ConfigSetting("VRManualForceVR", &g_Config.bManualForceVR, false, CfgFlag::PER_GAME),
ConfigSetting("VRPassthrough", &g_Config.bPassthrough, false, CfgFlag::PER_GAME),
ConfigSetting("VRRescaleHUD", &g_Config.bRescaleHUD, true, CfgFlag::PER_GAME),

View File

@ -482,7 +482,7 @@ public:
bool bEnable6DoF;
bool bEnableStereo;
bool bEnableMotions;
bool bAntiFlickeringFlow;
bool bEnableImmersiveVR;
bool bForce72Hz;
bool bManualForceVR;
bool bPassthrough;

View File

@ -1664,13 +1664,13 @@ void FramebufferManagerCommon::CopyDisplayToOutput(bool reallyDirty) {
//clip the VR framebuffer to keep the aspect ratio
if (IsVREnabled() && !IsFlatVRGame() && !IsGameVRScene()) {
float aspect = 272.0f / 480.0f * (g_Config.bAntiFlickeringFlow ? 2.0f : 1.0f);
float aspect = 272.0f / 480.0f * (g_Config.bEnableImmersiveVR ? 2.0f : 1.0f);
float clipY = 272.0f * (1.0f - aspect) / 2.0f;
v0 = (clipY + offsetY) / (float)vfb->bufferHeight;
v1 = (272.0f - clipY + offsetY) / (float)vfb->bufferHeight;
//zoom inside
float zoom = g_Config.bAntiFlickeringFlow ? 0.4f : 0.1f;
float zoom = g_Config.bEnableImmersiveVR ? 0.4f : 0.1f;
u0 += zoom / aspect;
u1 -= zoom / aspect;
v0 += zoom;

View File

@ -412,7 +412,7 @@ void LinkedShader::UpdateUniforms(const ShaderID &vsid, bool useBufferedRenderin
// Set HUD mode
if (gstate_c.Use(GPU_USE_VIRTUAL_REALITY)) {
if (GuessVRDrawingHUD(is2D, flatScreen)) {
float aspect = 480.0f / 272.0f * (g_Config.bAntiFlickeringFlow ? 0.5f : 1.0f);
float aspect = 480.0f / 272.0f * (g_Config.bEnableImmersiveVR ? 0.5f : 1.0f);
render_->SetUniformF1(&u_scaleX, g_Config.fHeadUpDisplayScale * aspect);
render_->SetUniformF1(&u_scaleY, g_Config.fHeadUpDisplayScale);
} else {

View File

@ -1285,13 +1285,11 @@ void GameSettingsScreen::CreateVRSettings(UI::ViewGroup *vrSettings) {
vrSettings->Add(new CheckBox(&g_Config.bEnableVR, vr->T("Virtual reality")));
vrSettings->Add(new CheckBox(&g_Config.bEnable6DoF, vr->T("6DoF movement")));
vrSettings->Add(new CheckBox(&g_Config.bEnableStereo, vr->T("Stereoscopic vision (Experimental)")));
CheckBox* antiFlickering = new CheckBox(&g_Config.bAntiFlickeringFlow, vr->T("Anti-flickering flow"));
antiFlickering->SetEnabledPtr(&g_Config.bEnableVR);
vrSettings->Add(antiFlickering);
vrSettings->Add(new CheckBox(&g_Config.bForce72Hz, vr->T("Force 72Hz update")));
vrSettings->Add(new CheckBox(&g_Config.bEnableImmersiveVR, vr->T("Enable immersive mode")));
if (IsPassthroughSupported()) {
vrSettings->Add(new CheckBox(&g_Config.bPassthrough, vr->T("Enable passthrough")));
}
vrSettings->Add(new CheckBox(&g_Config.bForce72Hz, vr->T("Force 72Hz update")));
vrSettings->Add(new ItemHeader(vr->T("VR camera")));
vrSettings->Add(new PopupSliderChoiceFloat(&g_Config.fCanvasDistance, 1.0f, 15.0f, 12.0f, vr->T("Distance to 2D menus and scenes"), 1.0f, screenManager(), ""));

View File

@ -1418,9 +1418,10 @@ New version of PPSSPP available = ‎تتوفر نسخة جديدة من الب
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Налична е нова версия на P
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova versió de PPSSPP disponible
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,10 +1410,11 @@ New version of PPSSPP available = Je dostupná nová verze PPSSPP
[VR]
% of native FoV = % výchozího FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Experts only = Experts only
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Field of view scale = Poměr zorného pole
Force 72Hz update = Force 72Hz update
Game camera rotation step per frame = Game camera rotation step per frame

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Ny version af PPSSPP tilgængelig
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Neue PPSSPP Version verfügbar
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1435,14 +1435,15 @@ Screen representation = Screen representation
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Game camera rotation step per frame = Game camera rotation step per frame
Game camera uses rotation smoothing = Game camera uses rotation smoothing
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update
Game camera rotation step per frame = Game camera rotation step per frame
Game camera uses rotation smoothing = Game camera uses rotation smoothing
Heads-up display scale = Heads-up display scale
Heads-up display detection = Heads-up display detection
Map controller movements to keys = Map controller movements to keys

View File

@ -1412,9 +1412,10 @@ New version of PPSSPP available = Nueva versión de PPSSPP disponible
[VR]
% of native FoV = % de campo de visión nativo
6DoF movement = Movimiento 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distancia de los menús y escenas 2D
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Escala de campo de visión
Force 72Hz update = Forzar actualizar a 72Hz

View File

@ -1412,9 +1412,10 @@ New version of PPSSPP available = Nueva versión de PPSSPP disponible
[VR]
% of native FoV = % of native FoV
6DoF movement = movimiento 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distancia a menús y escenas 2D
Distance to 3D scenes when VR disabled = Distancia a escenas 3D cuando la realidad virtual está desactivada
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Solo expertos
Field of view scale = Field of view scale
Force 72Hz update = Forzar actualización de 72 Hz

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = ورژن جدیدی از ppsspp موجود ا
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Uusi PPSSPP-versio saatavilla
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF-liike (kuusi vapausastetta)
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Etäisyys 2D-valikkoihin ja kohtauksiin
Distance to 3D scenes when VR disabled = Etäisyys 3D-kohtauksiin, kun VR on poistettu käytöstä
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Vain asiantuntijoille
Field of view scale = Field of view scale
Force 72Hz update = Pakota 72Hz päivitys

View File

@ -1401,9 +1401,10 @@ New version of PPSSPP available = Nouvelle version de PPSSPP disponible
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova versión de PPSSPP dispoñible
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Νέα διαθέσιμη έκδοση PPSSPP
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova verzija PPSSPP-a je dostupna
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Elérhető a PPSSPP egy újabb verziója
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi baru PPSSPP tersedia
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1412,9 +1412,10 @@ New version of PPSSPP available = È disponibile una nuova versione di PPSSPP
[VR]
% of native FoV = % del FoV nativo
6DoF movement = Movimento 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distanza dai menu e dalle scene 2D
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Solo per esperti
Field of view scale = Scalatura "Field of view"
Force 72Hz update = Forza aggiornamento a 72Hz

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = 新しいバージョンのPPSSPPを利用で
[VR]
% of native FoV = ネイティブ視野角(FoV)の %
6DoF movement = 6DoF動作
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = 2Dメニューと空間までの距離
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = 視野角のスケール
Force 72Hz update = 72Hzに強制的に更新

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi anyar PPSSPP mpun ono monggo di comot
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1411,9 +1411,10 @@ Screen representation = 화면 표현
[VR]
% of native FoV = 실제 시야의 %
6DoF movement = 6DoF 이동
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = 2D 메뉴 및 장면까지의 거리
Distance to 3D scenes when VR disabled = VR 비활성화 시 3D 장면까지의 거리
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = 전문가 전용
Game camera rotation step per frame = 프레임당 게임 카메라 회전 단계
Game camera uses rotation smoothing = 회전 스무딩을 사용하는 게임 카메라

View File

@ -1425,9 +1425,10 @@ Screen representation = Screen representation
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Game camera rotation step per frame = Game camera rotation step per frame

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = ເວີຊັ່ນໃໝ່ຂອງ PPSSPP
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Galima nauja "PPSSPP" versija
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi terbaru PPSSPP tersedia
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Er is een nieuwe versie van PPSSPP beschikbaar
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1415,9 +1415,10 @@ New version of PPSSPP available = Dostępna jest nowa wersja PPSSPP!
[VR]
% of native FoV = % natywnego FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Dystans do elementów 2D
Distance to 3D scenes when VR disabled = Dystans do scen 3D przy wyłączonym VR
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Tylko dla ekspertów
Field of view scale = Skala pola widzenia
Force 72Hz update = Wymuś odświeżanie w 72Hz

View File

@ -1435,14 +1435,15 @@ Screen representation = Representação da tela
[VR]
% of native FoV = % do campo de visão nativo
6DoF movement = Movimentação do 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distância até os menus e cenas 2D
Distance to 3D scenes when VR disabled = Distância nas cenas em 3D quando a realidade virtual está desativada
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Só pra experts
Game camera rotation step per frame = Passo da rotação da câmera do jogo por frame
Game camera uses rotation smoothing = A câmera do jogo usa suavização da rotação
Field of view scale = Escala do campo de visão
Force 72Hz update = Forçar atualização em 72 Hz
Game camera rotation step per frame = Passo da rotação da câmera do jogo por frame
Game camera uses rotation smoothing = A câmera do jogo usa suavização da rotação
Heads-up display scale = Escala do aviso antecipado da exibição
Heads-up display detection = Detecção do aviso antecipado da exibição
Map controller movements to keys = Mapear os movimentos do controle nas teclas

View File

@ -1437,9 +1437,10 @@ Screen representation = Representação da tela
[VR]
% of native FoV = % do campo de visão (FoV) nativo
6DoF movement = Movimento 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distância aos menus e cenas 2D
Distance to 3D scenes when VR disabled = Distância às cenas 3D quando a realidade virtual estiver desativada
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Apenas programadores
Field of view scale = Escala do campo de visão (FoV)
Force 72Hz update = Forçar taxa de atualização de 72Hz

View File

@ -1411,9 +1411,10 @@ New version of PPSSPP available = Nouă versiune de PPSSPP disponibilă.
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Доступна новая версия PPSSP
[VR]
% of native FoV = % стандартного угла обзора
6DoF movement = Движение 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Расстояние до 2D-меню и сцен
Distance to 3D scenes when VR disabled = Расстояние до 3D-сцен при отключенной ВР
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Только для экспертов
Field of view scale = Масштаб угла обзора
Force 72Hz update = Принудительная частота обновления 72 Гц

View File

@ -1411,9 +1411,10 @@ New version of PPSSPP available = Ny version av PPSSPP tillgänglig
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF rörelse
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Avstånd till 2D-menyer och scener
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view-skala
Force 72Hz update = Tvinga 72Hz uppdateringsfrekvens

View File

@ -1414,9 +1414,10 @@ New version of PPSSPP available = Meron nang bagong bersiyon ang PPSSPP
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distansya sa mga 2D na menu at mga eksena
Distance to 3D scenes when VR disabled = Distansya sa mga 3D na eksena noong hindi pinagana ang VR
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Mga eksperto lamang
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1437,9 +1437,9 @@ New version of PPSSPP available = PPSSPP เวอร์ชั่นใหม่
[VR]
% of native FoV = % ของค่า FoV ดั้งเดิม
6DoF movement = การเคลื่อนไหวแบบ 6DoF
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = ระยะห่างจากเมนูสองมิติ และฉาก
Distance to 3D scenes when VR disabled = ระยะห่างจากฉากสามมิติ เมื่อ VR ถูกปิดใช้งาน
Enable immersive mode = Enable immersive mode
Enable passthrough = เปิดใช้งานการส่งผ่าน
Experts only = สำหรับผู้เชี่ยวชาญเท่านั้น
Field of view scale = สเกลของมุมมองพื้นที่รอบตัว

View File

@ -1411,9 +1411,10 @@ New version of PPSSPP available = PPSSPP'nin yeni sürümü mevcut
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF hareketi
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = 2D menülere ve sahnelere olan mesafe
Distance to 3D scenes when VR disabled = VR devre dışı bırakıldığında 3D sahnelere olan mesafe
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Yalnızca uzmanlar
Field of view scale = Field of view scale
Force 72Hz update = 72Hz güncellemeyi zorla

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Доступна нова версія PPSSPP
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1410,9 +1410,10 @@ New version of PPSSPP available = Đã có phiên bản mới của PPSSPP
[VR]
% of native FoV = % of native FoV
6DoF movement = 6DoF movement
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = Distance to 2D menus and scenes
Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = Experts only
Field of view scale = Field of view scale
Force 72Hz update = Force 72Hz update

View File

@ -1413,9 +1413,10 @@ Search term = 搜索关键词
[VR]
% of native FoV = 原生视角的%
6DoF movement = 6自由度移动
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = 2D菜单和场景的距离
Distance to 3D scenes when VR disabled = 3D场景的距离 (VR关闭时)
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = 专家模式
Field of view scale = 视角比例
Force 72Hz update = 强制72Hz刷新

View File

@ -1411,9 +1411,10 @@ Screen representation = 螢幕呈現
[VR]
% of native FoV = % 於原生視野
6DoF movement = 六自由度移動
Anti-flickering flow = Anti-flickering flow
Distance to 2D menus and scenes = 2D 選單及場景距離
Distance to 3D scenes when VR disabled = VR 停用時的 3D 場景距離
Enable immersive mode = Enable immersive mode
Enable passthrough = Enable passthrough
Experts only = 僅限專家
Field of view scale = 視野縮放
Force 72Hz update = 強制 72Hz 更新