avoid gcc warnings: cast-function-type (#2252)
This commit is contained in:
parent
0e1c095c3b
commit
2480ea3dbe
@ -44,6 +44,8 @@
|
|||||||
, _handleAlloc.getMaxHandles() \
|
, _handleAlloc.getMaxHandles() \
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#define BGFX_CAST_FUNCTION(proto, func) ((proto)(void(*)(void))func)
|
||||||
|
|
||||||
#if BGFX_CONFIG_MULTITHREADED
|
#if BGFX_CONFIG_MULTITHREADED
|
||||||
# define BGFX_MUTEX_SCOPE(_mutex) bx::MutexScope BX_CONCATENATE(mutexScope, __LINE__)(_mutex)
|
# define BGFX_MUTEX_SCOPE(_mutex) bx::MutexScope BX_CONCATENATE(mutexScope, __LINE__)(_mutex)
|
||||||
#else
|
#else
|
||||||
|
@ -450,7 +450,7 @@ EGL_IMPORT
|
|||||||
{ \
|
{ \
|
||||||
if (NULL == _func) \
|
if (NULL == _func) \
|
||||||
{ \
|
{ \
|
||||||
_func = (_proto)bx::dlsym(glesv2, #_import); \
|
_func = BGFX_CAST_FUNCTION(_proto, bx::dlsym(glesv2, #_import)); \
|
||||||
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
||||||
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_import); \
|
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_import); \
|
||||||
} \
|
} \
|
||||||
@ -460,7 +460,7 @@ EGL_IMPORT
|
|||||||
{ \
|
{ \
|
||||||
if (NULL == _func) \
|
if (NULL == _func) \
|
||||||
{ \
|
{ \
|
||||||
_func = (_proto)eglGetProcAddress(#_import); \
|
_func = BGFX_CAST_FUNCTION(_proto , eglGetProcAddress(#_import)); \
|
||||||
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
||||||
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_import); \
|
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGLES context. eglGetProcAddress(\"%s\")", #_import); \
|
||||||
} \
|
} \
|
||||||
|
@ -352,7 +352,7 @@ namespace bgfx { namespace gl
|
|||||||
{ \
|
{ \
|
||||||
if (NULL == _func) \
|
if (NULL == _func) \
|
||||||
{ \
|
{ \
|
||||||
_func = (_proto)glXGetProcAddress( (const GLubyte*)#_import); \
|
_func = BGFX_CAST_FUNCTION(_proto, glXGetProcAddress( (const GLubyte*)#_import)); \
|
||||||
BX_TRACE("%p " #_func " (" #_import ")", _func); \
|
BX_TRACE("%p " #_func " (" #_import ")", _func); \
|
||||||
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGL context. glXGetProcAddress %s", #_import); \
|
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create OpenGL context. glXGetProcAddress %s", #_import); \
|
||||||
} \
|
} \
|
||||||
|
@ -188,7 +188,7 @@ namespace bgfx { namespace gl
|
|||||||
{ \
|
{ \
|
||||||
_func = (_proto)emscripten_webgl1_get_proc_address(#_import); \
|
_func = (_proto)emscripten_webgl1_get_proc_address(#_import); \
|
||||||
if (!_func && webGLVersion >= 2) \
|
if (!_func && webGLVersion >= 2) \
|
||||||
_func = (_proto)emscripten_webgl2_get_proc_address(#_import); \
|
_func = BGFX_CAST_FUNCTION(_proto, emscripten_webgl2_get_proc_address(#_import)); \
|
||||||
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
BX_TRACE("\t%p " #_func " (" #_import ")", _func); \
|
||||||
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create WebGL/OpenGLES context. GetProcAddress(\"%s\")", #_import); \
|
BGFX_FATAL(_optional || NULL != _func, Fatal::UnableToInitialize, "Failed to create WebGL/OpenGLES context. GetProcAddress(\"%s\")", #_import); \
|
||||||
} \
|
} \
|
||||||
|
@ -106,7 +106,7 @@ namespace bgfx { namespace gl
|
|||||||
m_opengl32dll = bx::dlopen("opengl32.dll");
|
m_opengl32dll = bx::dlopen("opengl32.dll");
|
||||||
BGFX_FATAL(NULL != m_opengl32dll, Fatal::UnableToInitialize, "Failed to load opengl32.dll.");
|
BGFX_FATAL(NULL != m_opengl32dll, Fatal::UnableToInitialize, "Failed to load opengl32.dll.");
|
||||||
|
|
||||||
wglGetProcAddress = (PFNWGLGETPROCADDRESSPROC)bx::dlsym(m_opengl32dll, "wglGetProcAddress");
|
wglGetProcAddress = BGFX_CAST_FUNCTION(PFNWGLGETPROCADDRESSPROC, bx::dlsym(m_opengl32dll, "wglGetProcAddress"));
|
||||||
BGFX_FATAL(NULL != wglGetProcAddress, Fatal::UnableToInitialize, "Failed get wglGetProcAddress.");
|
BGFX_FATAL(NULL != wglGetProcAddress, Fatal::UnableToInitialize, "Failed get wglGetProcAddress.");
|
||||||
|
|
||||||
|
|
||||||
@ -136,13 +136,13 @@ namespace bgfx { namespace gl
|
|||||||
|
|
||||||
if (NULL != g_platformData.nwh && NULL == g_platformData.context )
|
if (NULL != g_platformData.nwh && NULL == g_platformData.context )
|
||||||
{
|
{
|
||||||
wglMakeCurrent = (PFNWGLMAKECURRENTPROC)bx::dlsym(m_opengl32dll, "wglMakeCurrent");
|
wglMakeCurrent = BGFX_CAST_FUNCTION(PFNWGLMAKECURRENTPROC, bx::dlsym(m_opengl32dll, "wglMakeCurrent"));
|
||||||
BGFX_FATAL(NULL != wglMakeCurrent, Fatal::UnableToInitialize, "Failed get wglMakeCurrent.");
|
BGFX_FATAL(NULL != wglMakeCurrent, Fatal::UnableToInitialize, "Failed get wglMakeCurrent.");
|
||||||
|
|
||||||
wglCreateContext = (PFNWGLCREATECONTEXTPROC)bx::dlsym(m_opengl32dll, "wglCreateContext");
|
wglCreateContext = BGFX_CAST_FUNCTION(PFNWGLCREATECONTEXTPROC, bx::dlsym(m_opengl32dll, "wglCreateContext"));
|
||||||
BGFX_FATAL(NULL != wglCreateContext, Fatal::UnableToInitialize, "Failed get wglCreateContext.");
|
BGFX_FATAL(NULL != wglCreateContext, Fatal::UnableToInitialize, "Failed get wglCreateContext.");
|
||||||
|
|
||||||
wglDeleteContext = (PFNWGLDELETECONTEXTPROC)bx::dlsym(m_opengl32dll, "wglDeleteContext");
|
wglDeleteContext = BGFX_CAST_FUNCTION(PFNWGLDELETECONTEXTPROC, bx::dlsym(m_opengl32dll, "wglDeleteContext"));
|
||||||
BGFX_FATAL(NULL != wglDeleteContext, Fatal::UnableToInitialize, "Failed get wglDeleteContext.");
|
BGFX_FATAL(NULL != wglDeleteContext, Fatal::UnableToInitialize, "Failed get wglDeleteContext.");
|
||||||
|
|
||||||
m_hdc = GetDC( (HWND)g_platformData.nwh);
|
m_hdc = GetDC( (HWND)g_platformData.nwh);
|
||||||
@ -171,10 +171,10 @@ namespace bgfx { namespace gl
|
|||||||
|
|
||||||
HGLRC context = createContext(hdc);
|
HGLRC context = createContext(hdc);
|
||||||
|
|
||||||
wglGetExtensionsStringARB = (PFNWGLGETEXTENSIONSSTRINGARBPROC)wglGetProcAddress("wglGetExtensionsStringARB");
|
wglGetExtensionsStringARB = BGFX_CAST_FUNCTION(PFNWGLGETEXTENSIONSSTRINGARBPROC, wglGetProcAddress("wglGetExtensionsStringARB"));
|
||||||
wglChoosePixelFormatARB = (PFNWGLCHOOSEPIXELFORMATARBPROC)wglGetProcAddress("wglChoosePixelFormatARB");
|
wglChoosePixelFormatARB = BGFX_CAST_FUNCTION(PFNWGLCHOOSEPIXELFORMATARBPROC, wglGetProcAddress("wglChoosePixelFormatARB"));
|
||||||
wglCreateContextAttribsARB = (PFNWGLCREATECONTEXTATTRIBSARBPROC)wglGetProcAddress("wglCreateContextAttribsARB");
|
wglCreateContextAttribsARB = BGFX_CAST_FUNCTION(PFNWGLCREATECONTEXTATTRIBSARBPROC, wglGetProcAddress("wglCreateContextAttribsARB"));
|
||||||
wglSwapIntervalEXT = (PFNWGLSWAPINTERVALEXTPROC)wglGetProcAddress("wglSwapIntervalEXT");
|
wglSwapIntervalEXT = BGFX_CAST_FUNCTION(PFNWGLSWAPINTERVALEXTPROC, wglGetProcAddress("wglSwapIntervalEXT"));
|
||||||
|
|
||||||
if (NULL != wglGetExtensionsStringARB)
|
if (NULL != wglGetExtensionsStringARB)
|
||||||
{
|
{
|
||||||
@ -391,10 +391,10 @@ namespace bgfx { namespace gl
|
|||||||
{ \
|
{ \
|
||||||
if (NULL == _func) \
|
if (NULL == _func) \
|
||||||
{ \
|
{ \
|
||||||
_func = (_proto)wglGetProcAddress(#_import); \
|
_func = BGFX_CAST_FUNCTION(_proto, wglGetProcAddress(#_import)); \
|
||||||
if (_func == NULL) \
|
if (_func == NULL) \
|
||||||
{ \
|
{ \
|
||||||
_func = (_proto)bx::dlsym(m_opengl32dll, #_import); \
|
_func = BGFX_CAST_FUNCTION(_proto, bx::dlsym(m_opengl32dll, #_import)); \
|
||||||
BX_TRACE(" %p " #_func " (" #_import ")", _func); \
|
BX_TRACE(" %p " #_func " (" #_import ")", _func); \
|
||||||
} \
|
} \
|
||||||
else \
|
else \
|
||||||
|
Loading…
Reference in New Issue
Block a user