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