2012-11-15 00:39:56 +01:00
|
|
|
#pragma once
|
2015-06-19 17:49:38 +02:00
|
|
|
|
|
|
|
|
struct GSRender;
|
2012-11-15 00:39:56 +01:00
|
|
|
|
|
|
|
|
struct GSInfo
|
|
|
|
|
{
|
2013-06-30 10:46:29 +02:00
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
u8 resolutionId;
|
|
|
|
|
u8 scanMode;
|
|
|
|
|
u8 conversion;
|
|
|
|
|
u8 aspect;
|
2014-04-04 15:25:38 +02:00
|
|
|
u8 format;
|
2013-06-30 10:46:29 +02:00
|
|
|
u16 refreshRates;
|
2014-04-04 15:25:38 +02:00
|
|
|
u32 pitch;
|
2013-06-30 10:46:29 +02:00
|
|
|
} mode;
|
2012-11-15 00:39:56 +01:00
|
|
|
|
|
|
|
|
GSInfo()
|
|
|
|
|
{
|
2013-06-30 10:46:29 +02:00
|
|
|
}
|
2012-11-15 00:39:56 +01:00
|
|
|
|
2014-08-23 02:16:54 +02:00
|
|
|
void Init();
|
2012-11-15 00:39:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class GSManager
|
|
|
|
|
{
|
|
|
|
|
GSInfo m_info;
|
|
|
|
|
GSRender* m_render;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
GSManager();
|
|
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
|
void Close();
|
|
|
|
|
|
2014-01-07 08:30:41 +01:00
|
|
|
bool IsInited() const { return m_render != nullptr; }
|
|
|
|
|
|
2012-11-15 00:39:56 +01:00
|
|
|
GSInfo& GetInfo() { return m_info; }
|
2013-06-30 10:46:29 +02:00
|
|
|
GSRender& GetRender() { assert(m_render); return *m_render; }
|
2012-11-15 00:39:56 +01:00
|
|
|
|
|
|
|
|
u8 GetState();
|
|
|
|
|
u8 GetColorSpace();
|
2014-07-10 16:16:19 +02:00
|
|
|
};
|