mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- removed obsolete code from POSIX backends
This commit is contained in:
parent
1ebc169d56
commit
ecb5bfec13
4 changed files with 0 additions and 13 deletions
|
@ -83,8 +83,6 @@ protected:
|
|||
void SetFullscreenMode();
|
||||
void SetWindowedMode();
|
||||
|
||||
void InitializeState();
|
||||
|
||||
void SwapBuffers();
|
||||
|
||||
void SetGammaTable(uint16_t* table);
|
||||
|
|
|
@ -422,10 +422,6 @@ void SystemGLFrameBuffer::SetVSync(bool vsync)
|
|||
}
|
||||
|
||||
|
||||
void SystemGLFrameBuffer::InitializeState()
|
||||
{
|
||||
}
|
||||
|
||||
void SystemGLFrameBuffer::SwapBuffers()
|
||||
{
|
||||
[[NSOpenGLContext currentContext] flushBuffer];
|
||||
|
|
|
@ -32,7 +32,6 @@ public:
|
|||
protected:
|
||||
void SetGammaTable(uint16_t *tbl);
|
||||
void ResetGammaTable();
|
||||
void InitializeState();
|
||||
|
||||
SystemGLFrameBuffer () {}
|
||||
uint8_t GammaTable[3][256];
|
||||
|
|
|
@ -273,12 +273,6 @@ SystemGLFrameBuffer::~SystemGLFrameBuffer ()
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void SystemGLFrameBuffer::InitializeState()
|
||||
{
|
||||
}
|
||||
|
||||
void SystemGLFrameBuffer::SetGammaTable(uint16_t *tbl)
|
||||
{
|
||||
if (m_supportsGamma)
|
||||
|
|
Loading…
Reference in a new issue