2013-07-21 17:44:53 -04:00
|
|
|
/*
|
2015-01-01 18:04:46 -05:00
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
2013-07-21 17:44:53 -04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2013-11-14 00:54:36 -05:00
|
|
|
#ifndef BGFX_GLCONTEXT_EAGL_H_HEADER_GUARD
|
|
|
|
#define BGFX_GLCONTEXT_EAGL_H_HEADER_GUARD
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
#if BX_PLATFORM_IOS
|
|
|
|
|
2015-03-22 01:11:59 -04:00
|
|
|
namespace bgfx { namespace gl
|
2013-07-21 17:44:53 -04:00
|
|
|
{
|
2014-09-07 20:17:38 -04:00
|
|
|
struct SwapChainGL;
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
struct GlContext
|
|
|
|
{
|
|
|
|
GlContext()
|
|
|
|
: m_context(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void create(uint32_t _width, uint32_t _height);
|
|
|
|
void destroy();
|
|
|
|
void resize(uint32_t _width, uint32_t _height, bool _vsync);
|
2014-09-07 20:17:38 -04:00
|
|
|
|
2014-09-23 23:35:39 -04:00
|
|
|
static bool isSwapChainSupported();
|
2014-09-07 20:17:38 -04:00
|
|
|
SwapChainGL* createSwapChain(void* _nwh);
|
2014-11-30 12:06:47 -05:00
|
|
|
void destroySwapChain(SwapChainGL* _swapChain);
|
2014-09-07 20:17:38 -04:00
|
|
|
void swap(SwapChainGL* _swapChain = NULL);
|
|
|
|
void makeCurrent(SwapChainGL* _swapChain = NULL);
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
void import();
|
|
|
|
|
2014-09-07 20:17:38 -04:00
|
|
|
GLuint getFbo()
|
|
|
|
{
|
|
|
|
return m_fbo;
|
|
|
|
}
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
bool isValid() const
|
|
|
|
{
|
|
|
|
return 0 != m_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* m_view;
|
|
|
|
void* m_context;
|
|
|
|
|
|
|
|
GLuint m_fbo;
|
|
|
|
GLuint m_colorRbo;
|
2014-04-05 08:44:29 -04:00
|
|
|
GLuint m_depthStencilRbo;
|
2013-07-21 17:44:53 -04:00
|
|
|
};
|
2015-03-22 01:11:59 -04:00
|
|
|
} /* namespace gl */ } // namespace bgfx
|
2013-07-21 17:44:53 -04:00
|
|
|
|
|
|
|
#endif // BX_PLATFORM_IOS
|
|
|
|
|
2013-11-14 00:54:36 -05:00
|
|
|
#endif // BGFX_GLCONTEXT_EAGL_H_HEADER_GUARD
|