- removed obsolete code from POSIX backends

This commit is contained in:
alexey.lysiuk 2018-06-29 17:13:38 +03:00
parent 1ebc169d56
commit ecb5bfec13
4 changed files with 0 additions and 13 deletions

View File

@ -83,8 +83,6 @@ protected:
void SetFullscreenMode();
void SetWindowedMode();
void InitializeState();
void SwapBuffers();
void SetGammaTable(uint16_t* table);

View File

@ -422,10 +422,6 @@ void SystemGLFrameBuffer::SetVSync(bool vsync)
}
void SystemGLFrameBuffer::InitializeState()
{
}
void SystemGLFrameBuffer::SwapBuffers()
{
[[NSOpenGLContext currentContext] flushBuffer];

View File

@ -32,7 +32,6 @@ public:
protected:
void SetGammaTable(uint16_t *tbl);
void ResetGammaTable();
void InitializeState();
SystemGLFrameBuffer () {}
uint8_t GammaTable[3][256];

View File

@ -273,12 +273,6 @@ SystemGLFrameBuffer::~SystemGLFrameBuffer ()
}
void SystemGLFrameBuffer::InitializeState()
{
}
void SystemGLFrameBuffer::SetGammaTable(uint16_t *tbl)
{
if (m_supportsGamma)