mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
VertexShaderManager: Rename projection hack variables
This commit is contained in:
parent
44f2420517
commit
f8a99ca192
5 changed files with 47 additions and 30 deletions
|
@ -50,6 +50,15 @@ enum StereoMode
|
|||
STEREO_3DVISION
|
||||
};
|
||||
|
||||
struct ProjectionHackConfig final
|
||||
{
|
||||
bool m_enable;
|
||||
bool m_sznear;
|
||||
bool m_szfar;
|
||||
std::string m_znear;
|
||||
std::string m_zfar;
|
||||
};
|
||||
|
||||
// NEVER inherit from this class.
|
||||
struct VideoConfig final
|
||||
{
|
||||
|
@ -119,8 +128,7 @@ struct VideoConfig final
|
|||
bool bSkipEFBCopyToRam;
|
||||
bool bCopyEFBScaled;
|
||||
int iSafeTextureCache_ColorSamples;
|
||||
int iPhackvalue[3];
|
||||
std::string sPhackvalue[2];
|
||||
ProjectionHackConfig phack;
|
||||
float fAspectRatioHackW, fAspectRatioHackH;
|
||||
bool bEnablePixelLighting;
|
||||
bool bFastDepthCalc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue