mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-05 15:49:01 +00:00
# Conflicts: # CMakeLists.txt # CMakeSettings.json # Data/Sys/GameSettings/GLR.ini # Data/Sys/GameSettings/HA9.ini # Data/Sys/GameSettings/MB3.ini # Data/Sys/GameSettings/MBA.ini # Data/Sys/GameSettings/MCV.ini # Data/Sys/GameSettings/MCY.ini # Data/Sys/GameSettings/NAK.ini # Data/Sys/GameSettings/NAL.ini # Data/Sys/GameSettings/NAT.ini # Data/Sys/GameSettings/R8P.ini # Data/Sys/GameSettings/R9I.ini # Data/Sys/GameSettings/REF.ini # Data/Sys/GameSettings/RES.ini # Data/Sys/GameSettings/RMHE08.ini # Data/Sys/GameSettings/RMHP08.ini # Data/Sys/GameSettings/SE2.ini # Data/Sys/GameSettings/WW2.ini # Data/Sys/GameSettings/WW3.ini # Data/Sys/GameSettings/WWI.ini # Externals/Bochs_disasm/Bochs_disasm.vcxproj # Externals/FreeSurround/FreeSurround.vcxproj # Externals/LZO/LZO.vcxproj # Externals/SFML/build/vc2010/SFML_Network.vcxproj # Externals/bzip2/bzip2.vcxproj # Externals/cpp-optparse/cpp-optparse.vcxproj # Externals/cubeb/msvc/cubeb.vcxproj # Externals/curl/curl.vcxproj # Externals/curl/lib/CMakeLists.txt # Externals/discord-rpc/src/discord-rpc.vcxproj # Externals/ed25519/ed25519.vcxproj # Externals/enet/enet.vcxproj # Externals/glslang/glslang.vcxproj # Externals/imgui/imgui.vcxproj # Externals/liblzma/liblzma.vcxproj # Externals/libpng/png/png.vcxproj # Externals/libusb/libusb_static_2013.vcxproj # Externals/mbedtls/mbedTLS.vcxproj # Externals/miniupnpc/miniupnpc.vcxproj # Externals/minizip/minizip.vcxproj # Externals/picojson/picojson.vcxproj # Externals/pugixml/pugixml.vcxproj # Externals/soundtouch/SoundTouch.vcxproj # Externals/xxhash/xxhash.vcxproj # Externals/zlib/zlib.vcxproj # Externals/zstd/zstd.vcxproj # Languages/Languages.vcxproj # Source/Android/jni/MainAndroid.cpp # Source/Core/AudioCommon/AudioCommon.vcxproj # Source/Core/Common/Common.vcxproj # Source/Core/Common/Common.vcxproj.filters # Source/Core/Common/Logging/Log.h # Source/Core/Common/StringUtil.cpp # Source/Core/Core/CMakeLists.txt # Source/Core/Core/ConfigManager.cpp # Source/Core/Core/ConfigManager.h # Source/Core/Core/Core.vcxproj # Source/Core/Core/Core.vcxproj.filters # Source/Core/Core/HotkeyManager.cpp # Source/Core/Core/State.cpp # Source/Core/DiscIO/DiscIO.vcxproj # Source/Core/DolphinNoGUI/DolphinNoGUI.vcxproj # Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp # Source/Core/DolphinQt/DolphinQt.vcxproj # Source/Core/InputCommon/InputCommon.vcxproj # Source/Core/InputCommon/InputCommon.vcxproj.filters # Source/Core/UICommon/UICommon.vcxproj # Source/Core/UpdaterCommon/UpdaterCommon.vcxproj # Source/Core/VideoBackends/D3D/D3D.vcxproj # Source/Core/VideoBackends/D3D12/D3D12.vcxproj # Source/Core/VideoBackends/D3DCommon/D3DCommon.vcxproj # Source/Core/VideoBackends/Null/Null.vcxproj # Source/Core/VideoBackends/OGL/OGL.vcxproj # Source/Core/VideoBackends/Software/Software.vcxproj # Source/Core/VideoBackends/Vulkan/Vulkan.vcxproj # Source/Core/VideoCommon/OnScreenDisplay.cpp # Source/Core/VideoCommon/OnScreenDisplay.h # Source/Core/VideoCommon/VideoCommon.vcxproj # Source/Core/WinUpdater/WinUpdater.vcxproj # Source/DSPTool/DSPTool.vcxproj # Source/PCH/pch.vcxproj # Source/UnitTests/UnitTests.vcxproj
260 lines
6.8 KiB
C++
260 lines
6.8 KiB
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
enum class APIType;
|
|
|
|
// Log in two categories, and save three other options in the same byte
|
|
#define CONF_LOG 1
|
|
#define CONF_PRIMLOG 2
|
|
#define CONF_SAVETARGETS 8
|
|
#define CONF_SAVESHADERS 16
|
|
|
|
constexpr int EFB_SCALE_AUTO_INTEGRAL = 0;
|
|
|
|
enum class AspectMode : int
|
|
{
|
|
Auto,
|
|
AnalogWide,
|
|
Analog,
|
|
Stretch,
|
|
Melee
|
|
};
|
|
|
|
enum class StereoMode : int
|
|
{
|
|
Off,
|
|
SBS,
|
|
TAB,
|
|
Anaglyph,
|
|
QuadBuffer,
|
|
Passive
|
|
};
|
|
|
|
enum class ShaderCompilationMode : int
|
|
{
|
|
Synchronous,
|
|
SynchronousUberShaders,
|
|
AsynchronousUberShaders,
|
|
AsynchronousSkipRendering
|
|
};
|
|
|
|
enum class FreelookControlType : int
|
|
{
|
|
SixAxis,
|
|
FPS,
|
|
Orbital
|
|
};
|
|
|
|
// NEVER inherit from this class.
|
|
struct VideoConfig final
|
|
{
|
|
VideoConfig();
|
|
void Refresh();
|
|
void VerifyValidity();
|
|
|
|
// General
|
|
bool bVSync;
|
|
bool bVSyncActive;
|
|
bool bWidescreenHack;
|
|
AspectMode aspect_mode;
|
|
AspectMode suggested_aspect_mode;
|
|
bool bCrop; // Aspect ratio controls.
|
|
bool bShaderCache;
|
|
|
|
// Enhancements
|
|
u32 iMultisamples;
|
|
bool bSSAA;
|
|
int iEFBScale;
|
|
bool bForceFiltering;
|
|
int iMaxAnisotropy;
|
|
std::string sPostProcessingShader;
|
|
bool bForceTrueColor;
|
|
bool bDisableCopyFilter;
|
|
bool bArbitraryMipmapDetection;
|
|
float fArbitraryMipmapDetectionThreshold;
|
|
|
|
// Information
|
|
bool bShowFPS;
|
|
bool bShowNetPlayPing;
|
|
bool bShowNetPlayMessages;
|
|
bool bOverlayStats;
|
|
bool bOverlayProjStats;
|
|
bool bTexFmtOverlayEnable;
|
|
bool bTexFmtOverlayCenter;
|
|
bool bLogRenderTimeToFile;
|
|
|
|
// Render
|
|
bool bWireFrame;
|
|
bool bDisableFog;
|
|
|
|
// Utility
|
|
bool bDumpTextures;
|
|
bool bDumpMipmapTextures;
|
|
bool bDumpBaseTextures;
|
|
bool bHiresTextures;
|
|
bool bCacheHiresTextures;
|
|
bool bDumpEFBTarget;
|
|
bool bDumpXFBTarget;
|
|
bool bDumpFramesAsImages;
|
|
bool bUseFFV1;
|
|
std::string sDumpCodec;
|
|
std::string sDumpEncoder;
|
|
std::string sDumpFormat;
|
|
std::string sDumpPath;
|
|
bool bInternalResolutionFrameDumps;
|
|
bool bFreeLook;
|
|
FreelookControlType iFreelookControlType;
|
|
bool bBorderlessFullscreen;
|
|
bool bEnableGPUTextureDecoding;
|
|
int iBitrateKbps;
|
|
|
|
// Hacks
|
|
bool bEFBAccessEnable;
|
|
bool bEFBAccessDeferInvalidation;
|
|
bool bPerfQueriesEnable;
|
|
bool bBBoxEnable;
|
|
bool bForceProgressive;
|
|
|
|
bool bEFBEmulateFormatChanges;
|
|
bool bSkipEFBCopyToRam;
|
|
bool bSkipXFBCopyToRam;
|
|
bool bDisableCopyToVRAM;
|
|
bool bDeferEFBCopies;
|
|
bool bImmediateXFB;
|
|
bool bSkipPresentingDuplicateXFBs;
|
|
bool bCopyEFBScaled;
|
|
int iSafeTextureCache_ColorSamples;
|
|
float fAspectRatioHackW, fAspectRatioHackH;
|
|
bool bEnablePixelLighting;
|
|
bool bFastDepthCalc;
|
|
bool bVertexRounding;
|
|
int iEFBAccessTileSize;
|
|
int iLog; // CONF_ bits
|
|
int iSaveTargetId; // TODO: Should be dropped
|
|
|
|
// Stereoscopy
|
|
StereoMode stereo_mode;
|
|
int iStereoDepth;
|
|
int iStereoConvergence;
|
|
int iStereoConvergencePercentage;
|
|
bool bStereoSwapEyes;
|
|
bool bStereoEFBMonoDepth;
|
|
int iStereoDepthPercentage;
|
|
|
|
// D3D only config, mostly to be merged into the above
|
|
int iAdapter;
|
|
|
|
// VideoSW Debugging
|
|
int drawStart;
|
|
int drawEnd;
|
|
bool bZComploc;
|
|
bool bZFreeze;
|
|
bool bDumpObjects;
|
|
bool bDumpTevStages;
|
|
bool bDumpTevTextureFetches;
|
|
|
|
// Enable API validation layers, currently only supported with Vulkan.
|
|
bool bEnableValidationLayer;
|
|
|
|
// Multithreaded submission, currently only supported with Vulkan.
|
|
bool bBackendMultithreading;
|
|
|
|
// Early command buffer execution interval in number of draws.
|
|
// Currently only supported with Vulkan.
|
|
int iCommandBufferExecuteInterval;
|
|
|
|
// Shader compilation settings.
|
|
bool bWaitForShadersBeforeStarting;
|
|
ShaderCompilationMode iShaderCompilationMode;
|
|
|
|
// Number of shader compiler threads.
|
|
// 0 disables background compilation.
|
|
// -1 uses an automatic number based on the CPU threads.
|
|
int iShaderCompilerThreads;
|
|
int iShaderPrecompilerThreads;
|
|
|
|
// Static config per API
|
|
// TODO: Move this out of VideoConfig
|
|
struct
|
|
{
|
|
APIType api_type;
|
|
|
|
std::vector<std::string> Adapters; // for D3D
|
|
std::vector<u32> AAModes;
|
|
|
|
// TODO: merge AdapterName and Adapters array
|
|
std::string AdapterName; // for OpenGL
|
|
|
|
u32 MaxTextureSize;
|
|
bool bUsesLowerLeftOrigin;
|
|
|
|
bool bSupportsExclusiveFullscreen;
|
|
bool bSupportsDualSourceBlend;
|
|
bool bSupportsPrimitiveRestart;
|
|
bool bSupportsOversizedViewports;
|
|
bool bSupportsGeometryShaders;
|
|
bool bSupportsComputeShaders;
|
|
bool bSupports3DVision;
|
|
bool bSupportsEarlyZ; // needed by PixelShaderGen, so must stay in VideoCommon
|
|
bool bSupportsBindingLayout; // Needed by ShaderGen, so must stay in VideoCommon
|
|
bool bSupportsBBox;
|
|
bool bSupportsGSInstancing; // Needed by GeometryShaderGen, so must stay in VideoCommon
|
|
bool bSupportsPostProcessing;
|
|
bool bSupportsPaletteConversion;
|
|
bool bSupportsClipControl; // Needed by VertexShaderGen, so must stay in VideoCommon
|
|
bool bSupportsSSAA;
|
|
bool bSupportsFragmentStoresAndAtomics; // a.k.a. OpenGL SSBOs a.k.a. Direct3D UAVs
|
|
bool bSupportsDepthClamp; // Needed by VertexShaderGen, so must stay in VideoCommon
|
|
bool bSupportsReversedDepthRange;
|
|
bool bSupportsLogicOp;
|
|
bool bSupportsMultithreading;
|
|
bool bSupportsGPUTextureDecoding;
|
|
bool bSupportsST3CTextures;
|
|
bool bSupportsCopyToVram;
|
|
bool bSupportsBitfield; // Needed by UberShaders, so must stay in VideoCommon
|
|
bool bSupportsDynamicSamplerIndexing; // Needed by UberShaders, so must stay in VideoCommon
|
|
bool bSupportsBPTCTextures;
|
|
bool bSupportsFramebufferFetch; // Used as an alternative to dual-source blend on GLES
|
|
bool bSupportsBackgroundCompiling;
|
|
bool bSupportsLargePoints;
|
|
bool bSupportsPartialDepthCopies;
|
|
bool bSupportsDepthReadback;
|
|
bool bSupportsShaderBinaries;
|
|
bool bSupportsPipelineCacheData;
|
|
} backend_info;
|
|
|
|
// Utility
|
|
bool MultisamplingEnabled() const { return iMultisamples > 1; }
|
|
bool ExclusiveFullscreenEnabled() const
|
|
{
|
|
return backend_info.bSupportsExclusiveFullscreen && !bBorderlessFullscreen;
|
|
}
|
|
bool UseGPUTextureDecoding() const
|
|
{
|
|
return backend_info.bSupportsGPUTextureDecoding && bEnableGPUTextureDecoding;
|
|
}
|
|
bool UseVertexRounding() const { return bVertexRounding && iEFBScale != 1; }
|
|
bool UsingUberShaders() const;
|
|
u32 GetShaderCompilerThreads() const;
|
|
u32 GetShaderPrecompilerThreads() const;
|
|
};
|
|
|
|
extern VideoConfig g_Config;
|
|
extern VideoConfig g_ActiveConfig;
|
|
|
|
// Called every frame.
|
|
void UpdateActiveConfig();
|