2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "VideoCommon/VideoConfig.h"
|
|
|
|
|
2015-12-12 12:00:08 +00:00
|
|
|
#include <algorithm>
|
2009-09-13 08:21:35 +00:00
|
|
|
|
2017-06-13 10:07:09 +00:00
|
|
|
#include "Common/CPUDetect.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-06-24 08:55:08 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2017-05-18 12:59:38 +00:00
|
|
|
#include "Core/Config/GraphicsSettings.h"
|
2022-01-05 22:22:07 +00:00
|
|
|
#include "Core/Config/MainSettings.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/Movie.h"
|
2021-06-03 14:03:37 +00:00
|
|
|
#include "VideoCommon/DriverDetails.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-09-13 10:18:01 +00:00
|
|
|
VideoConfig g_Config;
|
|
|
|
VideoConfig g_ActiveConfig;
|
2017-05-18 12:59:38 +00:00
|
|
|
static bool s_has_registered_callback = false;
|
2009-09-13 08:21:35 +00:00
|
|
|
|
2019-01-27 02:24:53 +00:00
|
|
|
static bool IsVSyncActive(bool enabled)
|
|
|
|
{
|
|
|
|
// Vsync is disabled when the throttler is disabled by the tab key.
|
|
|
|
return enabled && !Core::GetIsThrottlerTempDisabled() &&
|
2022-01-05 22:22:07 +00:00
|
|
|
Config::Get(Config::MAIN_EMULATION_SPEED) == 1.0;
|
2019-01-27 02:24:53 +00:00
|
|
|
}
|
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
void UpdateActiveConfig()
|
2009-09-13 08:21:35 +00:00
|
|
|
{
|
2013-05-21 23:20:22 +00:00
|
|
|
if (Movie::IsPlayingInput() && Movie::IsConfigSaved())
|
|
|
|
Movie::SetGraphicsConfig();
|
2009-09-13 08:21:35 +00:00
|
|
|
g_ActiveConfig = g_Config;
|
2019-01-27 02:24:53 +00:00
|
|
|
g_ActiveConfig.bVSyncActive = IsVSyncActive(g_ActiveConfig.bVSync);
|
2009-09-13 08:21:35 +00:00
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2017-05-18 12:59:38 +00:00
|
|
|
void VideoConfig::Refresh()
|
2008-10-22 21:23:40 +00:00
|
|
|
{
|
2017-05-18 12:59:38 +00:00
|
|
|
if (!s_has_registered_callback)
|
|
|
|
{
|
2017-10-10 13:52:17 +00:00
|
|
|
// There was a race condition between the video thread and the host thread here, if
|
|
|
|
// corrections need to be made by VerifyValidity(). Briefly, the config will contain
|
|
|
|
// invalid values. Instead, pause emulation first, which will flush the video thread,
|
|
|
|
// update the config and correct it, then resume emulation, after which the video
|
|
|
|
// thread will detect the config has changed and act accordingly.
|
2022-05-16 23:59:23 +00:00
|
|
|
Config::AddConfigChangedCallback([]() {
|
|
|
|
Core::RunAsCPUThread([]() {
|
|
|
|
g_Config.Refresh();
|
|
|
|
g_Config.VerifyValidity();
|
|
|
|
});
|
|
|
|
});
|
2017-05-18 12:59:38 +00:00
|
|
|
s_has_registered_callback = true;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-05-18 12:59:38 +00:00
|
|
|
bVSync = Config::Get(Config::GFX_VSYNC);
|
|
|
|
iAdapter = Config::Get(Config::GFX_ADAPTER);
|
2022-07-23 22:27:24 +00:00
|
|
|
iManuallyUploadBuffers = Config::Get(Config::GFX_MTL_MANUALLY_UPLOAD_BUFFERS);
|
2022-10-24 22:40:32 +00:00
|
|
|
iUsePresentDrawable = Config::Get(Config::GFX_MTL_USE_PRESENT_DRAWABLE);
|
2017-05-18 12:59:38 +00:00
|
|
|
|
|
|
|
bWidescreenHack = Config::Get(Config::GFX_WIDESCREEN_HACK);
|
2019-02-23 15:00:18 +00:00
|
|
|
aspect_mode = Config::Get(Config::GFX_ASPECT_RATIO);
|
2018-11-07 18:00:24 +00:00
|
|
|
suggested_aspect_mode = Config::Get(Config::GFX_SUGGESTED_ASPECT_RATIO);
|
2017-05-18 12:59:38 +00:00
|
|
|
bCrop = Config::Get(Config::GFX_CROP);
|
|
|
|
iSafeTextureCache_ColorSamples = Config::Get(Config::GFX_SAFE_TEXTURE_CACHE_COLOR_SAMPLES);
|
|
|
|
bShowFPS = Config::Get(Config::GFX_SHOW_FPS);
|
2022-12-24 00:52:53 +00:00
|
|
|
bShowFTimes = Config::Get(Config::GFX_SHOW_FTIMES);
|
2022-10-26 19:17:15 +00:00
|
|
|
bShowVPS = Config::Get(Config::GFX_SHOW_VPS);
|
2022-12-24 00:52:53 +00:00
|
|
|
bShowVTimes = Config::Get(Config::GFX_SHOW_VTIMES);
|
|
|
|
bShowGraphs = Config::Get(Config::GFX_SHOW_GRAPHS);
|
2022-10-26 19:17:15 +00:00
|
|
|
bShowSpeed = Config::Get(Config::GFX_SHOW_SPEED);
|
|
|
|
bShowSpeedColors = Config::Get(Config::GFX_SHOW_SPEED_COLORS);
|
|
|
|
iPerfSampleUSec = Config::Get(Config::GFX_PERF_SAMP_WINDOW) * 1000;
|
2017-05-18 12:59:38 +00:00
|
|
|
bShowNetPlayPing = Config::Get(Config::GFX_SHOW_NETPLAY_PING);
|
|
|
|
bShowNetPlayMessages = Config::Get(Config::GFX_SHOW_NETPLAY_MESSAGES);
|
|
|
|
bLogRenderTimeToFile = Config::Get(Config::GFX_LOG_RENDER_TIME_TO_FILE);
|
|
|
|
bOverlayStats = Config::Get(Config::GFX_OVERLAY_STATS);
|
|
|
|
bOverlayProjStats = Config::Get(Config::GFX_OVERLAY_PROJ_STATS);
|
2021-11-28 01:09:55 +00:00
|
|
|
bOverlayScissorStats = Config::Get(Config::GFX_OVERLAY_SCISSOR_STATS);
|
2017-05-18 12:59:38 +00:00
|
|
|
bDumpTextures = Config::Get(Config::GFX_DUMP_TEXTURES);
|
2020-05-05 04:07:06 +00:00
|
|
|
bDumpMipmapTextures = Config::Get(Config::GFX_DUMP_MIP_TEXTURES);
|
|
|
|
bDumpBaseTextures = Config::Get(Config::GFX_DUMP_BASE_TEXTURES);
|
2017-05-18 12:59:38 +00:00
|
|
|
bHiresTextures = Config::Get(Config::GFX_HIRES_TEXTURES);
|
|
|
|
bCacheHiresTextures = Config::Get(Config::GFX_CACHE_HIRES_TEXTURES);
|
|
|
|
bDumpEFBTarget = Config::Get(Config::GFX_DUMP_EFB_TARGET);
|
2017-06-03 01:33:26 +00:00
|
|
|
bDumpXFBTarget = Config::Get(Config::GFX_DUMP_XFB_TARGET);
|
2017-05-18 12:59:38 +00:00
|
|
|
bDumpFramesAsImages = Config::Get(Config::GFX_DUMP_FRAMES_AS_IMAGES);
|
|
|
|
bUseFFV1 = Config::Get(Config::GFX_USE_FFV1);
|
|
|
|
sDumpFormat = Config::Get(Config::GFX_DUMP_FORMAT);
|
|
|
|
sDumpCodec = Config::Get(Config::GFX_DUMP_CODEC);
|
2022-04-08 22:45:49 +00:00
|
|
|
sDumpPixelFormat = Config::Get(Config::GFX_DUMP_PIXEL_FORMAT);
|
2017-12-29 14:00:55 +00:00
|
|
|
sDumpEncoder = Config::Get(Config::GFX_DUMP_ENCODER);
|
2017-05-18 12:59:38 +00:00
|
|
|
sDumpPath = Config::Get(Config::GFX_DUMP_PATH);
|
|
|
|
iBitrateKbps = Config::Get(Config::GFX_BITRATE_KBPS);
|
|
|
|
bInternalResolutionFrameDumps = Config::Get(Config::GFX_INTERNAL_RESOLUTION_FRAME_DUMPS);
|
|
|
|
bEnableGPUTextureDecoding = Config::Get(Config::GFX_ENABLE_GPU_TEXTURE_DECODING);
|
2022-07-24 08:51:22 +00:00
|
|
|
bPreferVSForLinePointExpansion = Config::Get(Config::GFX_PREFER_VS_FOR_LINE_POINT_EXPANSION);
|
2017-05-18 12:59:38 +00:00
|
|
|
bEnablePixelLighting = Config::Get(Config::GFX_ENABLE_PIXEL_LIGHTING);
|
|
|
|
bFastDepthCalc = Config::Get(Config::GFX_FAST_DEPTH_CALC);
|
|
|
|
iMultisamples = Config::Get(Config::GFX_MSAA);
|
|
|
|
bSSAA = Config::Get(Config::GFX_SSAA);
|
|
|
|
iEFBScale = Config::Get(Config::GFX_EFB_SCALE);
|
|
|
|
bTexFmtOverlayEnable = Config::Get(Config::GFX_TEXFMT_OVERLAY_ENABLE);
|
|
|
|
bTexFmtOverlayCenter = Config::Get(Config::GFX_TEXFMT_OVERLAY_CENTER);
|
|
|
|
bWireFrame = Config::Get(Config::GFX_ENABLE_WIREFRAME);
|
|
|
|
bDisableFog = Config::Get(Config::GFX_DISABLE_FOG);
|
|
|
|
bBorderlessFullscreen = Config::Get(Config::GFX_BORDERLESS_FULLSCREEN);
|
|
|
|
bEnableValidationLayer = Config::Get(Config::GFX_ENABLE_VALIDATION_LAYER);
|
|
|
|
bBackendMultithreading = Config::Get(Config::GFX_BACKEND_MULTITHREADING);
|
|
|
|
iCommandBufferExecuteInterval = Config::Get(Config::GFX_COMMAND_BUFFER_EXECUTE_INTERVAL);
|
|
|
|
bShaderCache = Config::Get(Config::GFX_SHADER_CACHE);
|
2018-03-01 09:21:06 +00:00
|
|
|
bWaitForShadersBeforeStarting = Config::Get(Config::GFX_WAIT_FOR_SHADERS_BEFORE_STARTING);
|
2018-05-11 20:38:44 +00:00
|
|
|
iShaderCompilationMode = Config::Get(Config::GFX_SHADER_COMPILATION_MODE);
|
2017-06-13 10:07:09 +00:00
|
|
|
iShaderCompilerThreads = Config::Get(Config::GFX_SHADER_COMPILER_THREADS);
|
2017-07-27 03:15:38 +00:00
|
|
|
iShaderPrecompilerThreads = Config::Get(Config::GFX_SHADER_PRECOMPILER_THREADS);
|
2022-07-26 08:57:30 +00:00
|
|
|
bCPUCull = Config::Get(Config::GFX_CPU_CULL);
|
2017-05-18 12:59:38 +00:00
|
|
|
|
2022-11-14 05:01:19 +00:00
|
|
|
texture_filtering_mode = Config::Get(Config::GFX_ENHANCE_FORCE_TEXTURE_FILTERING);
|
2017-05-18 12:59:38 +00:00
|
|
|
iMaxAnisotropy = Config::Get(Config::GFX_ENHANCE_MAX_ANISOTROPY);
|
|
|
|
sPostProcessingShader = Config::Get(Config::GFX_ENHANCE_POST_SHADER);
|
|
|
|
bForceTrueColor = Config::Get(Config::GFX_ENHANCE_FORCE_TRUE_COLOR);
|
2018-04-29 08:52:30 +00:00
|
|
|
bDisableCopyFilter = Config::Get(Config::GFX_ENHANCE_DISABLE_COPY_FILTER);
|
2018-05-17 00:12:56 +00:00
|
|
|
bArbitraryMipmapDetection = Config::Get(Config::GFX_ENHANCE_ARBITRARY_MIPMAP_DETECTION);
|
2018-05-17 00:45:10 +00:00
|
|
|
fArbitraryMipmapDetectionThreshold =
|
|
|
|
Config::Get(Config::GFX_ENHANCE_ARBITRARY_MIPMAP_DETECTION_THRESHOLD);
|
2017-05-18 12:59:38 +00:00
|
|
|
|
2018-05-11 20:38:44 +00:00
|
|
|
stereo_mode = Config::Get(Config::GFX_STEREO_MODE);
|
2017-05-18 12:59:38 +00:00
|
|
|
iStereoDepth = Config::Get(Config::GFX_STEREO_DEPTH);
|
|
|
|
iStereoConvergencePercentage = Config::Get(Config::GFX_STEREO_CONVERGENCE_PERCENTAGE);
|
|
|
|
bStereoSwapEyes = Config::Get(Config::GFX_STEREO_SWAP_EYES);
|
|
|
|
iStereoConvergence = Config::Get(Config::GFX_STEREO_CONVERGENCE);
|
|
|
|
bStereoEFBMonoDepth = Config::Get(Config::GFX_STEREO_EFB_MONO_DEPTH);
|
|
|
|
iStereoDepthPercentage = Config::Get(Config::GFX_STEREO_DEPTH_PERCENTAGE);
|
|
|
|
|
|
|
|
bEFBAccessEnable = Config::Get(Config::GFX_HACK_EFB_ACCESS_ENABLE);
|
2019-03-02 07:05:38 +00:00
|
|
|
bEFBAccessDeferInvalidation = Config::Get(Config::GFX_HACK_EFB_DEFER_INVALIDATION);
|
2017-05-18 12:59:38 +00:00
|
|
|
bBBoxEnable = Config::Get(Config::GFX_HACK_BBOX_ENABLE);
|
|
|
|
bForceProgressive = Config::Get(Config::GFX_HACK_FORCE_PROGRESSIVE);
|
|
|
|
bSkipEFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_EFB_COPY_TO_RAM);
|
2017-06-26 03:23:47 +00:00
|
|
|
bSkipXFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM);
|
2018-02-11 05:36:49 +00:00
|
|
|
bDisableCopyToVRAM = Config::Get(Config::GFX_HACK_DISABLE_COPY_TO_VRAM);
|
2018-11-02 14:17:00 +00:00
|
|
|
bDeferEFBCopies = Config::Get(Config::GFX_HACK_DEFER_EFB_COPIES);
|
2017-08-13 04:10:21 +00:00
|
|
|
bImmediateXFB = Config::Get(Config::GFX_HACK_IMMEDIATE_XFB);
|
2023-01-14 06:56:37 +00:00
|
|
|
bVISkip = Config::Get(Config::GFX_HACK_VI_SKIP);
|
|
|
|
bSkipPresentingDuplicateXFBs = bVISkip || Config::Get(Config::GFX_HACK_SKIP_DUPLICATE_XFBS);
|
2017-12-16 21:18:13 +00:00
|
|
|
bCopyEFBScaled = Config::Get(Config::GFX_HACK_COPY_EFB_SCALED);
|
2017-05-18 12:59:38 +00:00
|
|
|
bEFBEmulateFormatChanges = Config::Get(Config::GFX_HACK_EFB_EMULATE_FORMAT_CHANGES);
|
2022-01-26 23:48:12 +00:00
|
|
|
bVertexRounding = Config::Get(Config::GFX_HACK_VERTEX_ROUNDING);
|
2019-03-02 05:11:47 +00:00
|
|
|
iEFBAccessTileSize = Config::Get(Config::GFX_HACK_EFB_ACCESS_TILE_SIZE);
|
2021-02-23 03:03:06 +00:00
|
|
|
iMissingColorValue = Config::Get(Config::GFX_HACK_MISSING_COLOR_VALUE);
|
2021-07-30 00:43:35 +00:00
|
|
|
bFastTextureSampling = Config::Get(Config::GFX_HACK_FAST_TEXTURE_SAMPLING);
|
2022-11-07 05:28:46 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
bNoMipmapping = Config::Get(Config::GFX_HACK_NO_MIPMAPPING);
|
|
|
|
#endif
|
2017-05-18 12:59:38 +00:00
|
|
|
|
|
|
|
bPerfQueriesEnable = Config::Get(Config::GFX_PERF_QUERIES_ENABLE);
|
2022-04-07 05:00:38 +00:00
|
|
|
|
|
|
|
bGraphicMods = Config::Get(Config::GFX_MODS_ENABLE);
|
2008-10-22 21:23:40 +00:00
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2011-02-13 13:42:59 +00:00
|
|
|
void VideoConfig::VerifyValidity()
|
|
|
|
{
|
|
|
|
// TODO: Check iMaxAnisotropy value
|
2015-12-12 12:00:08 +00:00
|
|
|
if (iAdapter < 0 || iAdapter > ((int)backend_info.Adapters.size() - 1))
|
|
|
|
iAdapter = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-12-12 12:00:08 +00:00
|
|
|
if (std::find(backend_info.AAModes.begin(), backend_info.AAModes.end(), iMultisamples) ==
|
|
|
|
backend_info.AAModes.end())
|
|
|
|
iMultisamples = 1;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-11-11 03:55:00 +00:00
|
|
|
if (stereo_mode != StereoMode::Off)
|
2014-12-20 18:54:00 +00:00
|
|
|
{
|
2014-12-20 21:14:45 +00:00
|
|
|
if (!backend_info.bSupportsGeometryShaders)
|
|
|
|
{
|
|
|
|
OSD::AddMessage(
|
|
|
|
"Stereoscopic 3D isn't supported by your GPU, support for OpenGL 3.2 is required.",
|
|
|
|
10000);
|
2017-11-11 03:55:00 +00:00
|
|
|
stereo_mode = StereoMode::Off;
|
2014-12-20 21:14:45 +00:00
|
|
|
}
|
2014-12-20 18:54:00 +00:00
|
|
|
}
|
2009-03-20 11:51:22 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 13:10:22 +00:00
|
|
|
bool VideoConfig::UsingUberShaders() const
|
|
|
|
{
|
|
|
|
return iShaderCompilationMode == ShaderCompilationMode::SynchronousUberShaders ||
|
|
|
|
iShaderCompilationMode == ShaderCompilationMode::AsynchronousUberShaders;
|
|
|
|
}
|
|
|
|
|
2017-07-27 03:15:38 +00:00
|
|
|
static u32 GetNumAutoShaderCompilerThreads()
|
|
|
|
{
|
2022-07-19 04:45:27 +00:00
|
|
|
// Automatic number.
|
|
|
|
return static_cast<u32>(std::clamp(cpu_info.num_cores - 3, 1, 4));
|
2017-07-27 03:15:38 +00:00
|
|
|
}
|
|
|
|
|
2021-01-02 12:47:18 +00:00
|
|
|
static u32 GetNumAutoShaderPreCompilerThreads()
|
|
|
|
{
|
|
|
|
// Automatic number. We use clamp(cpus - 2, 1, infty) here.
|
|
|
|
// We chose this because we don't want to limit our speed-up
|
|
|
|
// and at the same time leave two logical cores for the dolphin UI and the rest of the OS.
|
|
|
|
return static_cast<u32>(std::max(cpu_info.num_cores - 2, 1));
|
|
|
|
}
|
|
|
|
|
2017-06-13 10:07:09 +00:00
|
|
|
u32 VideoConfig::GetShaderCompilerThreads() const
|
|
|
|
{
|
2018-02-25 07:56:09 +00:00
|
|
|
if (!backend_info.bSupportsBackgroundCompiling)
|
2018-02-24 15:15:35 +00:00
|
|
|
return 0;
|
|
|
|
|
2017-06-13 10:07:09 +00:00
|
|
|
if (iShaderCompilerThreads >= 0)
|
|
|
|
return static_cast<u32>(iShaderCompilerThreads);
|
2017-07-27 03:15:38 +00:00
|
|
|
else
|
|
|
|
return GetNumAutoShaderCompilerThreads();
|
|
|
|
}
|
2017-06-13 10:07:09 +00:00
|
|
|
|
2017-07-27 03:15:38 +00:00
|
|
|
u32 VideoConfig::GetShaderPrecompilerThreads() const
|
|
|
|
{
|
2018-03-01 09:21:06 +00:00
|
|
|
// When using background compilation, always keep the same thread count.
|
2018-03-11 04:24:45 +00:00
|
|
|
if (!bWaitForShadersBeforeStarting)
|
2018-03-01 09:21:06 +00:00
|
|
|
return GetShaderCompilerThreads();
|
|
|
|
|
2018-02-25 07:56:09 +00:00
|
|
|
if (!backend_info.bSupportsBackgroundCompiling)
|
2018-02-24 15:15:35 +00:00
|
|
|
return 0;
|
|
|
|
|
2017-07-27 03:15:38 +00:00
|
|
|
if (iShaderPrecompilerThreads >= 0)
|
|
|
|
return static_cast<u32>(iShaderPrecompilerThreads);
|
2022-01-05 02:40:07 +00:00
|
|
|
else if (!DriverDetails::HasBug(DriverDetails::BUG_BROKEN_MULTITHREADED_SHADER_PRECOMPILATION))
|
2021-01-02 12:47:18 +00:00
|
|
|
return GetNumAutoShaderPreCompilerThreads();
|
2017-07-27 03:15:38 +00:00
|
|
|
else
|
2021-06-03 14:03:37 +00:00
|
|
|
return 1;
|
2017-06-13 10:07:09 +00:00
|
|
|
}
|