bgfx/src/glcontext_nsgl.h

39 lines
630 B
C
Raw Normal View History

/*
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#ifndef __GLCONTEXT_NSGL_H__
#define __GLCONTEXT_NSGL_H__
#if BX_PLATFORM_OSX
namespace bgfx
{
struct GlContext
{
GlContext()
2013-03-12 01:05:12 -04:00
: m_context(0)
{
}
2013-07-21 17:44:53 -04:00
void create(uint32_t _width, uint32_t _height);
void destroy();
2013-04-27 18:16:05 -04:00
void resize(uint32_t _width, uint32_t _height, bool _vsync);
void swap();
void import();
2013-07-21 17:44:53 -04:00
bool isValid() const
{
return 0 != m_context;
}
2013-07-21 17:44:53 -04:00
void* m_view;
void* m_context;
};
} // namespace bgfx
#endif // BX_PLATFORM_OSX
#endif // __GLCONTEXT_NSGL_H__