2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:09:55 -04:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-09-13 08:21:35 +00:00
|
|
|
// IMPORTANT: UI etc should modify g_Config. Graphics code should read g_ActiveConfig.
|
|
|
|
// The reason for this is to get rid of race conditions etc when the configuration
|
|
|
|
// changes in the middle of a frame. This is done by copying g_Config to g_ActiveConfig
|
|
|
|
// at the start of every frame. Noone should ever change members of g_ActiveConfig
|
|
|
|
// directly.
|
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-07-12 21:58:32 +00:00
|
|
|
#include <string>
|
2014-02-17 05:18:15 -05:00
|
|
|
#include <vector>
|
|
|
|
|
2014-09-07 20:06:58 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2019-07-16 20:18:48 -04:00
|
|
|
|
|
|
|
enum class APIType;
|
2009-07-12 21:58:32 +00:00
|
|
|
|
2009-02-04 17:33:59 +00:00
|
|
|
// Log in two categories, and save three other options in the same byte
|
2014-02-16 15:30:18 -05:00
|
|
|
#define CONF_LOG 1
|
|
|
|
#define CONF_PRIMLOG 2
|
|
|
|
#define CONF_SAVETARGETS 8
|
|
|
|
#define CONF_SAVESHADERS 16
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2017-07-03 16:32:02 +02:00
|
|
|
constexpr int EFB_SCALE_AUTO_INTEGRAL = 0;
|
|
|
|
|
2018-01-08 12:04:12 +01:00
|
|
|
enum class AspectMode : int
|
2010-01-13 21:11:02 +00:00
|
|
|
{
|
2017-11-10 22:45:32 -05:00
|
|
|
Auto,
|
|
|
|
AnalogWide,
|
|
|
|
Analog,
|
|
|
|
Stretch,
|
2010-01-13 21:11:02 +00:00
|
|
|
};
|
|
|
|
|
2018-01-08 12:04:12 +01:00
|
|
|
enum class StereoMode : int
|
2014-10-31 15:25:42 +01:00
|
|
|
{
|
2017-11-10 22:55:00 -05:00
|
|
|
Off,
|
|
|
|
SBS,
|
|
|
|
TAB,
|
|
|
|
Anaglyph,
|
|
|
|
QuadBuffer,
|
2019-10-02 11:07:17 +10:00
|
|
|
Passive
|
2014-10-31 15:25:42 +01:00
|
|
|
};
|
|
|
|
|
2018-03-16 23:10:22 +10:00
|
|
|
enum class ShaderCompilationMode : int
|
2018-03-01 18:03:24 +10:00
|
|
|
{
|
2018-03-16 23:10:22 +10:00
|
|
|
Synchronous,
|
|
|
|
SynchronousUberShaders,
|
|
|
|
AsynchronousUberShaders,
|
|
|
|
AsynchronousSkipRendering
|
2018-03-01 18:03:24 +10:00
|
|
|
};
|
|
|
|
|
2009-02-28 16:33:59 +00:00
|
|
|
// NEVER inherit from this class.
|
2014-03-16 17:00:29 -04:00
|
|
|
struct VideoConfig final
|
2008-10-22 21:23:40 +00:00
|
|
|
{
|
2011-03-21 19:57:31 +00:00
|
|
|
VideoConfig();
|
2017-05-18 13:59:38 +01:00
|
|
|
void Refresh();
|
2011-02-13 13:42:59 +00:00
|
|
|
void VerifyValidity();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
// General
|
2009-03-05 23:11:13 +00:00
|
|
|
bool bVSync;
|
2019-01-27 12:24:53 +10:00
|
|
|
bool bVSyncActive;
|
2009-09-02 21:30:19 +00:00
|
|
|
bool bWidescreenHack;
|
2017-11-10 22:45:32 -05:00
|
|
|
AspectMode aspect_mode;
|
2018-11-07 19:00:24 +01:00
|
|
|
AspectMode suggested_aspect_mode;
|
2010-06-05 01:38:22 +00:00
|
|
|
bool bCrop; // Aspect ratio controls.
|
2017-02-19 12:02:47 +01:00
|
|
|
bool bShaderCache;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2008-10-26 13:35:34 +00:00
|
|
|
// Enhancements
|
2017-06-07 04:30:39 -07:00
|
|
|
u32 iMultisamples;
|
2015-09-01 00:17:24 -05:00
|
|
|
bool bSSAA;
|
2010-06-09 15:33:01 +00:00
|
|
|
int iEFBScale;
|
2010-06-05 01:38:22 +00:00
|
|
|
bool bForceFiltering;
|
|
|
|
int iMaxAnisotropy;
|
2009-06-08 19:42:25 +00:00
|
|
|
std::string sPostProcessingShader;
|
2016-09-08 02:43:34 +02:00
|
|
|
bool bForceTrueColor;
|
2018-04-29 18:52:30 +10:00
|
|
|
bool bDisableCopyFilter;
|
2018-05-16 17:12:56 -07:00
|
|
|
bool bArbitraryMipmapDetection;
|
2018-05-16 17:45:10 -07:00
|
|
|
float fArbitraryMipmapDetectionThreshold;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2008-10-26 13:35:34 +00:00
|
|
|
// Information
|
2010-06-05 01:38:22 +00:00
|
|
|
bool bShowFPS;
|
2016-02-02 16:35:27 +01:00
|
|
|
bool bShowNetPlayPing;
|
|
|
|
bool bShowNetPlayMessages;
|
2010-06-05 01:38:22 +00:00
|
|
|
bool bOverlayStats;
|
2009-02-15 20:49:59 +00:00
|
|
|
bool bOverlayProjStats;
|
2010-06-05 01:38:22 +00:00
|
|
|
bool bTexFmtOverlayEnable;
|
|
|
|
bool bTexFmtOverlayCenter;
|
2014-07-09 17:03:17 +02:00
|
|
|
bool bLogRenderTimeToFile;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
// Render
|
|
|
|
bool bWireFrame;
|
2009-04-01 12:31:18 +00:00
|
|
|
bool bDisableFog;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
// Utility
|
|
|
|
bool bDumpTextures;
|
2020-05-04 23:07:06 -05:00
|
|
|
bool bDumpMipmapTextures;
|
|
|
|
bool bDumpBaseTextures;
|
2011-04-25 20:06:45 +00:00
|
|
|
bool bHiresTextures;
|
2015-03-01 23:53:15 +01:00
|
|
|
bool bCacheHiresTextures;
|
2009-03-07 09:29:25 +00:00
|
|
|
bool bDumpEFBTarget;
|
2017-06-02 20:33:26 -05:00
|
|
|
bool bDumpXFBTarget;
|
2016-11-18 22:57:08 +10:00
|
|
|
bool bDumpFramesAsImages;
|
2011-02-11 22:09:20 +00:00
|
|
|
bool bUseFFV1;
|
2017-02-21 11:04:22 -08:00
|
|
|
std::string sDumpCodec;
|
2017-12-29 09:00:55 -05:00
|
|
|
std::string sDumpEncoder;
|
2017-02-21 02:43:49 -08:00
|
|
|
std::string sDumpFormat;
|
2017-02-21 11:37:36 -08:00
|
|
|
std::string sDumpPath;
|
2016-11-10 23:26:57 +10:00
|
|
|
bool bInternalResolutionFrameDumps;
|
2014-07-26 12:43:49 +02:00
|
|
|
bool bBorderlessFullscreen;
|
2016-11-27 18:14:57 +10:00
|
|
|
bool bEnableGPUTextureDecoding;
|
2017-02-24 21:54:22 -05:00
|
|
|
int iBitrateKbps;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
// Hacks
|
|
|
|
bool bEFBAccessEnable;
|
2019-03-02 17:05:38 +10:00
|
|
|
bool bEFBAccessDeferInvalidation;
|
2013-08-11 17:08:12 +02:00
|
|
|
bool bPerfQueriesEnable;
|
2015-04-06 02:17:57 +02:00
|
|
|
bool bBBoxEnable;
|
2015-07-27 20:04:03 +08:00
|
|
|
bool bForceProgressive;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
bool bEFBEmulateFormatChanges;
|
2015-02-21 12:08:47 +01:00
|
|
|
bool bSkipEFBCopyToRam;
|
2017-06-25 22:23:47 -05:00
|
|
|
bool bSkipXFBCopyToRam;
|
2018-02-11 15:36:49 +10:00
|
|
|
bool bDisableCopyToVRAM;
|
2018-11-03 00:17:00 +10:00
|
|
|
bool bDeferEFBCopies;
|
2017-08-12 23:10:21 -05:00
|
|
|
bool bImmediateXFB;
|
2020-01-14 10:57:35 +10:00
|
|
|
bool bSkipPresentingDuplicateXFBs;
|
2009-12-15 01:40:54 +00:00
|
|
|
bool bCopyEFBScaled;
|
2010-11-15 09:54:07 +00:00
|
|
|
int iSafeTextureCache_ColorSamples;
|
2010-04-04 22:52:27 +00:00
|
|
|
float fAspectRatioHackW, fAspectRatioHackH;
|
2011-03-19 00:50:34 +00:00
|
|
|
bool bEnablePixelLighting;
|
2016-02-29 00:55:51 +01:00
|
|
|
bool bFastDepthCalc;
|
2017-02-18 18:22:41 -06:00
|
|
|
bool bVertexRounding;
|
2019-03-02 15:11:47 +10:00
|
|
|
int iEFBAccessTileSize;
|
2010-06-05 01:38:22 +00:00
|
|
|
int iLog; // CONF_ bits
|
2012-05-28 11:31:37 +02:00
|
|
|
int iSaveTargetId; // TODO: Should be dropped
|
2021-02-22 19:03:06 -08:00
|
|
|
u32 iMissingColorValue;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2014-11-24 12:01:21 +01:00
|
|
|
// Stereoscopy
|
2017-11-10 22:55:00 -05:00
|
|
|
StereoMode stereo_mode;
|
2015-09-10 22:14:21 +02:00
|
|
|
int iStereoDepth;
|
|
|
|
int iStereoConvergence;
|
|
|
|
int iStereoConvergencePercentage;
|
|
|
|
bool bStereoSwapEyes;
|
2014-12-24 23:06:44 +01:00
|
|
|
bool bStereoEFBMonoDepth;
|
2014-12-21 14:06:16 +01:00
|
|
|
int iStereoDepthPercentage;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2009-09-13 08:21:35 +00:00
|
|
|
// D3D only config, mostly to be merged into the above
|
|
|
|
int iAdapter;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
// VideoSW Debugging
|
|
|
|
int drawStart;
|
|
|
|
int drawEnd;
|
|
|
|
bool bZComploc;
|
|
|
|
bool bZFreeze;
|
|
|
|
bool bDumpObjects;
|
|
|
|
bool bDumpTevStages;
|
|
|
|
bool bDumpTevTextureFetches;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2016-08-13 22:08:46 +10:00
|
|
|
// Enable API validation layers, currently only supported with Vulkan.
|
|
|
|
bool bEnableValidationLayer;
|
|
|
|
|
|
|
|
// Multithreaded submission, currently only supported with Vulkan.
|
|
|
|
bool bBackendMultithreading;
|
|
|
|
|
2016-08-13 22:57:50 +10:00
|
|
|
// Early command buffer execution interval in number of draws.
|
|
|
|
// Currently only supported with Vulkan.
|
|
|
|
int iCommandBufferExecuteInterval;
|
|
|
|
|
2018-03-01 18:03:24 +10:00
|
|
|
// Shader compilation settings.
|
2018-03-01 19:21:06 +10:00
|
|
|
bool bWaitForShadersBeforeStarting;
|
2018-03-16 23:10:22 +10:00
|
|
|
ShaderCompilationMode iShaderCompilationMode;
|
2017-06-13 20:07:09 +10:00
|
|
|
|
|
|
|
// Number of shader compiler threads.
|
|
|
|
// 0 disables background compilation.
|
|
|
|
// -1 uses an automatic number based on the CPU threads.
|
|
|
|
int iShaderCompilerThreads;
|
2017-07-27 13:15:38 +10:00
|
|
|
int iShaderPrecompilerThreads;
|
2017-06-13 20:07:09 +10:00
|
|
|
|
2009-09-13 21:18:04 +00:00
|
|
|
// Static config per API
|
2011-05-31 20:16:59 +00:00
|
|
|
// TODO: Move this out of VideoConfig
|
2011-03-21 19:57:31 +00:00
|
|
|
struct
|
2010-11-21 14:47:28 +00:00
|
|
|
{
|
2016-07-21 19:04:57 -04:00
|
|
|
APIType api_type;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2013-09-22 17:49:26 +02:00
|
|
|
std::vector<std::string> Adapters; // for D3D
|
2017-06-07 04:30:39 -07:00
|
|
|
std::vector<u32> AAModes;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2016-06-20 23:54:44 +12:00
|
|
|
// TODO: merge AdapterName and Adapters array
|
|
|
|
std::string AdapterName; // for OpenGL
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-03-10 00:01:23 +10:00
|
|
|
u32 MaxTextureSize;
|
2019-02-15 11:59:50 +10:00
|
|
|
bool bUsesLowerLeftOrigin;
|
2017-03-10 00:01:23 +10:00
|
|
|
|
2014-07-19 20:18:03 +02:00
|
|
|
bool bSupportsExclusiveFullscreen;
|
2013-09-22 17:49:26 +02:00
|
|
|
bool bSupportsDualSourceBlend;
|
2013-03-29 14:27:33 +01:00
|
|
|
bool bSupportsPrimitiveRestart;
|
2013-10-14 15:16:42 +02:00
|
|
|
bool bSupportsOversizedViewports;
|
2014-12-17 00:26:03 +01:00
|
|
|
bool bSupportsGeometryShaders;
|
2016-11-27 18:14:55 +10:00
|
|
|
bool bSupportsComputeShaders;
|
2014-11-14 00:24:53 +01:00
|
|
|
bool bSupports3DVision;
|
2013-07-22 12:02:16 +02:00
|
|
|
bool bSupportsEarlyZ; // needed by PixelShaderGen, so must stay in VideoCommon
|
2014-03-30 13:58:05 -05:00
|
|
|
bool bSupportsBindingLayout; // Needed by ShaderGen, so must stay in VideoCommon
|
2014-11-13 23:26:49 +01:00
|
|
|
bool bSupportsBBox;
|
2014-10-29 14:51:12 +01:00
|
|
|
bool bSupportsGSInstancing; // Needed by GeometryShaderGen, so must stay in VideoCommon
|
2015-01-03 01:33:30 +01:00
|
|
|
bool bSupportsPostProcessing;
|
2015-01-26 15:33:23 -08:00
|
|
|
bool bSupportsPaletteConversion;
|
2015-05-19 01:18:04 +02:00
|
|
|
bool bSupportsClipControl; // Needed by VertexShaderGen, so must stay in VideoCommon
|
2015-09-01 00:17:24 -05:00
|
|
|
bool bSupportsSSAA;
|
2017-03-05 15:17:54 -08:00
|
|
|
bool bSupportsFragmentStoresAndAtomics; // a.k.a. OpenGL SSBOs a.k.a. Direct3D UAVs
|
2016-08-12 13:55:35 +02:00
|
|
|
bool bSupportsDepthClamp; // Needed by VertexShaderGen, so must stay in VideoCommon
|
2016-08-21 17:47:24 +02:00
|
|
|
bool bSupportsReversedDepthRange;
|
2018-05-26 00:04:18 +10:00
|
|
|
bool bSupportsLogicOp;
|
2016-08-13 22:08:46 +10:00
|
|
|
bool bSupportsMultithreading;
|
2016-11-27 18:14:57 +10:00
|
|
|
bool bSupportsGPUTextureDecoding;
|
2017-04-16 19:30:11 +10:00
|
|
|
bool bSupportsST3CTextures;
|
2017-05-29 17:02:09 -05:00
|
|
|
bool bSupportsCopyToVram;
|
2017-07-20 15:25:24 +10:00
|
|
|
bool bSupportsBitfield; // Needed by UberShaders, so must stay in VideoCommon
|
|
|
|
bool bSupportsDynamicSamplerIndexing; // Needed by UberShaders, so must stay in VideoCommon
|
2017-07-27 22:00:04 +10:00
|
|
|
bool bSupportsBPTCTextures;
|
2017-10-25 22:44:39 -07:00
|
|
|
bool bSupportsFramebufferFetch; // Used as an alternative to dual-source blend on GLES
|
2018-02-25 17:56:09 +10:00
|
|
|
bool bSupportsBackgroundCompiling;
|
2019-02-15 11:59:50 +10:00
|
|
|
bool bSupportsLargePoints;
|
2019-03-02 15:03:49 +10:00
|
|
|
bool bSupportsPartialDepthCopies;
|
2020-05-24 16:11:10 +10:00
|
|
|
bool bSupportsDepthReadback;
|
2019-04-15 21:55:26 +10:00
|
|
|
bool bSupportsShaderBinaries;
|
|
|
|
bool bSupportsPipelineCacheData;
|
2010-11-21 14:47:28 +00:00
|
|
|
} backend_info;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2012-09-28 23:19:50 +02:00
|
|
|
// Utility
|
2017-04-30 18:07:57 +10:00
|
|
|
bool MultisamplingEnabled() const { return iMultisamples > 1; }
|
2014-10-07 16:43:32 +02:00
|
|
|
bool ExclusiveFullscreenEnabled() const
|
|
|
|
{
|
|
|
|
return backend_info.bSupportsExclusiveFullscreen && !bBorderlessFullscreen;
|
|
|
|
}
|
2016-11-27 18:14:57 +10:00
|
|
|
bool UseGPUTextureDecoding() const
|
|
|
|
{
|
|
|
|
return backend_info.bSupportsGPUTextureDecoding && bEnableGPUTextureDecoding;
|
|
|
|
}
|
2017-07-03 16:32:02 +02:00
|
|
|
bool UseVertexRounding() const { return bVertexRounding && iEFBScale != 1; }
|
2018-03-16 23:10:22 +10:00
|
|
|
bool UsingUberShaders() const;
|
2017-06-13 20:07:09 +10:00
|
|
|
u32 GetShaderCompilerThreads() const;
|
2017-07-27 13:15:38 +10:00
|
|
|
u32 GetShaderPrecompilerThreads() const;
|
2008-10-22 21:23:40 +00:00
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-09-13 10:18:01 +00:00
|
|
|
extern VideoConfig g_Config;
|
|
|
|
extern VideoConfig g_ActiveConfig;
|
2009-09-13 08:21:35 +00:00
|
|
|
|
|
|
|
// Called every frame.
|
|
|
|
void UpdateActiveConfig();
|