GPU: Add force true color setting

This commit is contained in:
Connor McLaughlin
2019-11-02 00:31:25 +10:00
parent fc09b722ea
commit c9feb7ea07
8 changed files with 30 additions and 12 deletions

View File

@ -12,6 +12,7 @@ public:
virtual ~GPU_HW();
virtual void Reset() override;
virtual void UpdateSettings() override;
protected:
enum class HWPrimitive : u8
@ -107,6 +108,7 @@ protected:
std::string GenerateDisplayFragmentShader(bool depth_24bit, bool interlaced);
HWRenderBatch m_batch = {};
bool m_true_color = false;
private:
static HWPrimitive GetPrimitiveForCommand(RenderCommand rc);