bgfx/src/glcontext_nsgl.h

48 lines
971 B
C
Raw Normal View History

/*
2022-01-15 22:59:06 +03:00
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
#define BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
#if BX_PLATFORM_OSX
namespace bgfx { namespace gl
{
2014-09-08 04:46:52 +04:00
struct SwapChainGL;
struct GlContext
{
GlContext()
2016-03-13 22:56:25 +03:00
: m_context(NULL)
, m_view(NULL)
{
}
2013-07-22 01:44:53 +04:00
void create(uint32_t _width, uint32_t _height);
void destroy();
2015-04-07 07:31:26 +03:00
void resize(uint32_t _width, uint32_t _height, uint32_t _flags);
2014-09-08 04:46:52 +04:00
uint64_t getCaps() const;
2014-09-08 04:46:52 +04:00
SwapChainGL* createSwapChain(void* _nwh);
2014-11-30 20:06:47 +03:00
void destroySwapChain(SwapChainGL* _swapChain);
2014-09-08 04:46:52 +04:00
void swap(SwapChainGL* _swapChain = NULL);
void makeCurrent(SwapChainGL* _swapChain = NULL);
void import();
2013-07-22 01:44:53 +04:00
bool isValid() const
{
2016-03-13 22:56:25 +03:00
return NULL != m_context;
}
2013-07-22 01:44:53 +04:00
void* m_context;
2016-03-13 22:56:25 +03:00
void* m_view;
};
} /* namespace gl */ } // namespace bgfx
#endif // BX_PLATFORM_OSX
#endif // BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD