VideoCommon/PixelShaderManager: Rename s_ variables.

This commit is contained in:
Admiral H. Curtiss
2022-12-27 20:20:27 +01:00
parent 725bd64ec2
commit 4549fb4acb
2 changed files with 27 additions and 26 deletions

View File

@ -52,8 +52,9 @@ public:
PixelShaderConstants constants{};
bool dirty = false;
bool s_bFogRangeAdjustChanged = false;
bool s_bViewPortChanged = false;
bool s_bIndirectDirty = false;
bool s_bDestAlphaDirty = false;
private:
bool m_fog_range_adjusted_changed = false;
bool m_viewport_changed = false;
bool m_indirect_dirty = false;
bool m_dest_alpha_dirty = false;
};