2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 22:25:12 -07:00
|
|
|
|
2015-12-12 05:00:08 -07:00
|
|
|
#include <algorithm>
|
2009-09-13 02:21:35 -06:00
|
|
|
|
2017-06-13 04:07:09 -06:00
|
|
|
#include "Common/CPUDetect.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-06-24 02:55:08 -06:00
|
|
|
#include "Common/StringUtil.h"
|
2017-05-18 06:59:38 -06:00
|
|
|
#include "Core/Config/GraphicsSettings.h"
|
2018-09-05 03:19:17 -06:00
|
|
|
#include "Core/ConfigManager.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/Movie.h"
|
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2014-02-18 18:27:20 -07:00
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2008-12-07 22:25:12 -07:00
|
|
|
|
2009-09-13 04:18:01 -06:00
|
|
|
VideoConfig g_Config;
|
|
|
|
VideoConfig g_ActiveConfig;
|
2017-05-18 06:59:38 -06:00
|
|
|
static bool s_has_registered_callback = false;
|
2009-09-13 02:21:35 -06:00
|
|
|
|
2019-01-26 19:24:53 -07:00
|
|
|
static bool IsVSyncActive(bool enabled)
|
|
|
|
{
|
|
|
|
// Vsync is disabled when the throttler is disabled by the tab key.
|
|
|
|
return enabled && !Core::GetIsThrottlerTempDisabled() &&
|
|
|
|
SConfig::GetInstance().m_EmulationSpeed == 1.0;
|
|
|
|
}
|
|
|
|
|
2010-06-04 19:38:22 -06:00
|
|
|
void UpdateActiveConfig()
|
2009-09-13 02:21:35 -06:00
|
|
|
{
|
2013-05-21 17:20:22 -06:00
|
|
|
if (Movie::IsPlayingInput() && Movie::IsConfigSaved())
|
|
|
|
Movie::SetGraphicsConfig();
|
2009-09-13 02:21:35 -06:00
|
|
|
g_ActiveConfig = g_Config;
|
2019-01-26 19:24:53 -07:00
|
|
|
g_ActiveConfig.bVSyncActive = IsVSyncActive(g_ActiveConfig.bVSync);
|
2009-09-13 02:21:35 -06:00
|
|
|
}
|
2008-12-07 22:25:12 -07:00
|
|
|
|
2009-09-13 04:18:01 -06:00
|
|
|
VideoConfig::VideoConfig()
|
2008-12-07 22:25:12 -07:00
|
|
|
{
|
2010-04-04 16:52:27 -06:00
|
|
|
// Needed for the first frame, I think
|
|
|
|
fAspectRatioHackW = 1;
|
|
|
|
fAspectRatioHackH = 1;
|
2010-11-21 07:47:28 -07:00
|
|
|
|
|
|
|
// disable all features by default
|
2016-07-21 17:04:57 -06:00
|
|
|
backend_info.api_type = APIType::Nothing;
|
2017-03-09 07:01:23 -07:00
|
|
|
backend_info.MaxTextureSize = 16384;
|
2014-07-19 12:18:03 -06:00
|
|
|
backend_info.bSupportsExclusiveFullscreen = false;
|
2016-08-13 06:08:46 -06:00
|
|
|
backend_info.bSupportsMultithreading = false;
|
2017-04-16 03:30:11 -06:00
|
|
|
backend_info.bSupportsST3CTextures = false;
|
2017-07-27 06:00:04 -06:00
|
|
|
backend_info.bSupportsBPTCTextures = false;
|
2016-08-13 06:08:46 -06:00
|
|
|
|
|
|
|
bEnableValidationLayer = false;
|
2019-01-25 15:32:54 -07:00
|
|
|
|
|
|
|
#if defined(ANDROID)
|
|
|
|
bBackendMultithreading = false;
|
|
|
|
#else
|
2016-08-13 06:08:46 -06:00
|
|
|
bBackendMultithreading = true;
|
2019-01-25 15:32:54 -07:00
|
|
|
#endif
|
2008-12-07 22:25:12 -07:00
|
|
|
}
|
|
|
|
|
2017-05-18 06:59:38 -06:00
|
|
|
void VideoConfig::Refresh()
|
2008-12-07 22:25:12 -07:00
|
|
|
{
|
2017-05-18 06:59:38 -06:00
|
|
|
if (!s_has_registered_callback)
|
|
|
|
{
|
2017-10-10 07:52:17 -06: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.
|
|
|
|
Config::AddConfigChangedCallback([]() { Core::RunAsCPUThread([]() { g_Config.Refresh(); }); });
|
2017-05-18 06:59:38 -06:00
|
|
|
s_has_registered_callback = true;
|
|
|
|
}
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2017-05-18 06:59:38 -06:00
|
|
|
bVSync = Config::Get(Config::GFX_VSYNC);
|
|
|
|
iAdapter = Config::Get(Config::GFX_ADAPTER);
|
|
|
|
|
|
|
|
bWidescreenHack = Config::Get(Config::GFX_WIDESCREEN_HACK);
|
2019-02-23 08:00:18 -07:00
|
|
|
aspect_mode = Config::Get(Config::GFX_ASPECT_RATIO);
|
2018-11-07 11:00:24 -07:00
|
|
|
suggested_aspect_mode = Config::Get(Config::GFX_SUGGESTED_ASPECT_RATIO);
|
2017-05-18 06:59:38 -06: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);
|
|
|
|
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);
|
|
|
|
bDumpTextures = Config::Get(Config::GFX_DUMP_TEXTURES);
|
2020-05-04 22:07:06 -06:00
|
|
|
bDumpMipmapTextures = Config::Get(Config::GFX_DUMP_MIP_TEXTURES);
|
|
|
|
bDumpBaseTextures = Config::Get(Config::GFX_DUMP_BASE_TEXTURES);
|
2017-05-18 06:59:38 -06: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-02 19:33:26 -06:00
|
|
|
bDumpXFBTarget = Config::Get(Config::GFX_DUMP_XFB_TARGET);
|
2017-05-18 06:59:38 -06: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);
|
2017-12-29 07:00:55 -07:00
|
|
|
sDumpEncoder = Config::Get(Config::GFX_DUMP_ENCODER);
|
2017-05-18 06:59:38 -06: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);
|
|
|
|
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 02:21:06 -07:00
|
|
|
bWaitForShadersBeforeStarting = Config::Get(Config::GFX_WAIT_FOR_SHADERS_BEFORE_STARTING);
|
2018-05-11 14:38:44 -06:00
|
|
|
iShaderCompilationMode = Config::Get(Config::GFX_SHADER_COMPILATION_MODE);
|
2017-06-13 04:07:09 -06:00
|
|
|
iShaderCompilerThreads = Config::Get(Config::GFX_SHADER_COMPILER_THREADS);
|
2017-07-26 21:15:38 -06:00
|
|
|
iShaderPrecompilerThreads = Config::Get(Config::GFX_SHADER_PRECOMPILER_THREADS);
|
2017-05-18 06:59:38 -06:00
|
|
|
|
|
|
|
bZComploc = Config::Get(Config::GFX_SW_ZCOMPLOC);
|
|
|
|
bZFreeze = Config::Get(Config::GFX_SW_ZFREEZE);
|
|
|
|
bDumpObjects = Config::Get(Config::GFX_SW_DUMP_OBJECTS);
|
|
|
|
bDumpTevStages = Config::Get(Config::GFX_SW_DUMP_TEV_STAGES);
|
|
|
|
bDumpTevTextureFetches = Config::Get(Config::GFX_SW_DUMP_TEV_TEX_FETCHES);
|
|
|
|
drawStart = Config::Get(Config::GFX_SW_DRAW_START);
|
|
|
|
drawEnd = Config::Get(Config::GFX_SW_DRAW_END);
|
|
|
|
|
|
|
|
bForceFiltering = Config::Get(Config::GFX_ENHANCE_FORCE_FILTERING);
|
|
|
|
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 02:52:30 -06:00
|
|
|
bDisableCopyFilter = Config::Get(Config::GFX_ENHANCE_DISABLE_COPY_FILTER);
|
2018-05-16 18:12:56 -06:00
|
|
|
bArbitraryMipmapDetection = Config::Get(Config::GFX_ENHANCE_ARBITRARY_MIPMAP_DETECTION);
|
2018-05-16 18:45:10 -06:00
|
|
|
fArbitraryMipmapDetectionThreshold =
|
|
|
|
Config::Get(Config::GFX_ENHANCE_ARBITRARY_MIPMAP_DETECTION_THRESHOLD);
|
2017-05-18 06:59:38 -06:00
|
|
|
|
2018-05-11 14:38:44 -06:00
|
|
|
stereo_mode = Config::Get(Config::GFX_STEREO_MODE);
|
2017-05-18 06:59:38 -06: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 00:05:38 -07:00
|
|
|
bEFBAccessDeferInvalidation = Config::Get(Config::GFX_HACK_EFB_DEFER_INVALIDATION);
|
2017-05-18 06:59:38 -06: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-25 21:23:47 -06:00
|
|
|
bSkipXFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM);
|
2018-02-10 22:36:49 -07:00
|
|
|
bDisableCopyToVRAM = Config::Get(Config::GFX_HACK_DISABLE_COPY_TO_VRAM);
|
2018-11-02 08:17:00 -06:00
|
|
|
bDeferEFBCopies = Config::Get(Config::GFX_HACK_DEFER_EFB_COPIES);
|
2017-08-12 22:10:21 -06:00
|
|
|
bImmediateXFB = Config::Get(Config::GFX_HACK_IMMEDIATE_XFB);
|
2020-01-13 17:57:35 -07:00
|
|
|
bSkipPresentingDuplicateXFBs = Config::Get(Config::GFX_HACK_SKIP_DUPLICATE_XFBS);
|
2017-12-16 14:18:13 -07:00
|
|
|
bCopyEFBScaled = Config::Get(Config::GFX_HACK_COPY_EFB_SCALED);
|
2017-05-18 06:59:38 -06:00
|
|
|
bEFBEmulateFormatChanges = Config::Get(Config::GFX_HACK_EFB_EMULATE_FORMAT_CHANGES);
|
|
|
|
bVertexRounding = Config::Get(Config::GFX_HACK_VERTEX_ROUDING);
|
2019-03-01 22:11:47 -07:00
|
|
|
iEFBAccessTileSize = Config::Get(Config::GFX_HACK_EFB_ACCESS_TILE_SIZE);
|
2017-05-18 06:59:38 -06:00
|
|
|
|
|
|
|
bPerfQueriesEnable = Config::Get(Config::GFX_PERF_QUERIES_ENABLE);
|
|
|
|
|
2014-12-20 11:13:34 -07:00
|
|
|
VerifyValidity();
|
2008-12-07 22:25:12 -07:00
|
|
|
}
|
|
|
|
|
2011-02-13 06:42:59 -07:00
|
|
|
void VideoConfig::VerifyValidity()
|
|
|
|
{
|
|
|
|
// TODO: Check iMaxAnisotropy value
|
2015-12-12 05:00:08 -07:00
|
|
|
if (iAdapter < 0 || iAdapter > ((int)backend_info.Adapters.size() - 1))
|
|
|
|
iAdapter = 0;
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2015-12-12 05:00:08 -07:00
|
|
|
if (std::find(backend_info.AAModes.begin(), backend_info.AAModes.end(), iMultisamples) ==
|
|
|
|
backend_info.AAModes.end())
|
|
|
|
iMultisamples = 1;
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2017-11-10 20:55:00 -07:00
|
|
|
if (stereo_mode != StereoMode::Off)
|
2014-12-20 11:54:00 -07:00
|
|
|
{
|
2014-12-20 14:14:45 -07: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-10 20:55:00 -07:00
|
|
|
stereo_mode = StereoMode::Off;
|
2014-12-20 14:14:45 -07:00
|
|
|
}
|
2014-12-20 11:54:00 -07:00
|
|
|
}
|
2009-03-20 05:51:22 -06:00
|
|
|
}
|
|
|
|
|
2018-03-16 07:10:22 -06:00
|
|
|
bool VideoConfig::UsingUberShaders() const
|
|
|
|
{
|
|
|
|
return iShaderCompilationMode == ShaderCompilationMode::SynchronousUberShaders ||
|
|
|
|
iShaderCompilationMode == ShaderCompilationMode::AsynchronousUberShaders;
|
|
|
|
}
|
|
|
|
|
2017-07-26 21:15:38 -06:00
|
|
|
static u32 GetNumAutoShaderCompilerThreads()
|
|
|
|
{
|
|
|
|
// Automatic number. We use clamp(cpus - 3, 1, 4).
|
|
|
|
return static_cast<u32>(std::min(std::max(cpu_info.num_cores - 3, 1), 4));
|
|
|
|
}
|
|
|
|
|
2017-06-13 04:07:09 -06:00
|
|
|
u32 VideoConfig::GetShaderCompilerThreads() const
|
|
|
|
{
|
2018-02-25 00:56:09 -07:00
|
|
|
if (!backend_info.bSupportsBackgroundCompiling)
|
2018-02-24 08:15:35 -07:00
|
|
|
return 0;
|
|
|
|
|
2017-06-13 04:07:09 -06:00
|
|
|
if (iShaderCompilerThreads >= 0)
|
|
|
|
return static_cast<u32>(iShaderCompilerThreads);
|
2017-07-26 21:15:38 -06:00
|
|
|
else
|
|
|
|
return GetNumAutoShaderCompilerThreads();
|
|
|
|
}
|
2017-06-13 04:07:09 -06:00
|
|
|
|
2017-07-26 21:15:38 -06:00
|
|
|
u32 VideoConfig::GetShaderPrecompilerThreads() const
|
|
|
|
{
|
2018-03-01 02:21:06 -07:00
|
|
|
// When using background compilation, always keep the same thread count.
|
2018-03-10 21:24:45 -07:00
|
|
|
if (!bWaitForShadersBeforeStarting)
|
2018-03-01 02:21:06 -07:00
|
|
|
return GetShaderCompilerThreads();
|
|
|
|
|
2018-02-25 00:56:09 -07:00
|
|
|
if (!backend_info.bSupportsBackgroundCompiling)
|
2018-02-24 08:15:35 -07:00
|
|
|
return 0;
|
|
|
|
|
2017-07-26 21:15:38 -06:00
|
|
|
if (iShaderPrecompilerThreads >= 0)
|
|
|
|
return static_cast<u32>(iShaderPrecompilerThreads);
|
|
|
|
else
|
|
|
|
return GetNumAutoShaderCompilerThreads();
|
2017-06-13 04:07:09 -06:00
|
|
|
}
|