Moved radixsort out of bgfx.

This commit is contained in:
bkaradzic
2012-06-19 20:50:07 -07:00
parent ed383b0f1b
commit 08dddc5d74
3 changed files with 10 additions and 51 deletions

View File

@@ -344,6 +344,14 @@ namespace bgfx
success = eglMakeCurrent(m_display, m_surface, m_surface, m_context);
BGFX_FATAL(success, Fatal::OPENGL_UnableToCreateContext, "Failed to set context.");
# define GL_IMPORT(_optional, _proto, _func) \
{ \
_func = (_proto)eglGetProcAddress(#_func); \
BGFX_FATAL(_optional || NULL != _func, bgfx::Fatal::OPENGL_UnableToCreateContext, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_func); \
}
# include "glimports.h"
# undef GL_IMPORT
}
#endif // BX_PLATFORM_
}