2013-01-16 08:37:07 +04:00
|
|
|
/*
|
2014-02-11 10:07:04 +04:00
|
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
2013-01-16 08:37:07 +04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2013-11-14 09:54:36 +04:00
|
|
|
#ifndef BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
|
|
|
|
#define BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
|
2013-01-16 08:37:07 +04:00
|
|
|
|
|
|
|
#if BX_PLATFORM_OSX
|
|
|
|
|
|
|
|
namespace bgfx
|
|
|
|
{
|
2014-09-08 04:46:52 +04:00
|
|
|
struct SwapChainGL;
|
|
|
|
|
2013-01-16 08:37:07 +04:00
|
|
|
struct GlContext
|
|
|
|
{
|
|
|
|
GlContext()
|
2013-03-12 09:05:12 +04:00
|
|
|
: m_context(0)
|
2013-01-16 08:37:07 +04:00
|
|
|
{
|
|
|
|
}
|
2013-07-22 01:44:53 +04:00
|
|
|
|
2013-01-16 08:37:07 +04:00
|
|
|
void create(uint32_t _width, uint32_t _height);
|
|
|
|
void destroy();
|
2013-04-28 02:16:05 +04:00
|
|
|
void resize(uint32_t _width, uint32_t _height, bool _vsync);
|
2014-09-08 04:46:52 +04:00
|
|
|
|
2014-09-24 07:35:39 +04:00
|
|
|
static bool isSwapChainSupported();
|
2014-09-08 04:46:52 +04:00
|
|
|
SwapChainGL* createSwapChain(void* _nwh);
|
|
|
|
void destorySwapChain(SwapChainGL* _swapChain);
|
|
|
|
void swap(SwapChainGL* _swapChain = NULL);
|
|
|
|
void makeCurrent(SwapChainGL* _swapChain = NULL);
|
|
|
|
|
2013-01-16 08:37:07 +04:00
|
|
|
void import();
|
2013-07-22 01:44:53 +04:00
|
|
|
|
2013-01-16 08:37:07 +04:00
|
|
|
bool isValid() const
|
|
|
|
{
|
|
|
|
return 0 != m_context;
|
|
|
|
}
|
2013-07-22 01:44:53 +04:00
|
|
|
|
2013-01-16 08:37:07 +04:00
|
|
|
void* m_view;
|
|
|
|
void* m_context;
|
|
|
|
};
|
|
|
|
} // namespace bgfx
|
|
|
|
|
|
|
|
#endif // BX_PLATFORM_OSX
|
|
|
|
|
2013-11-14 09:54:36 +04:00
|
|
|
#endif // BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
|