mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-22 11:57:00 +00:00
Examples: OpenGL3: Fixed gl3w.c for Linux when compiled with C++ compiler (#411)
This commit is contained in:
parent
38cfdafbaf
commit
dc86a8a0bf
@ -82,7 +82,7 @@ static void *get_proc(const char *proc)
|
||||
{
|
||||
void *res;
|
||||
|
||||
res = glXGetProcAddress((const GLubyte *) proc);
|
||||
res = (void*)glXGetProcAddress((const GLubyte *) proc);
|
||||
if (!res)
|
||||
res = dlsym(libgl, proc);
|
||||
return res;
|
||||
|
Loading…
Reference in New Issue
Block a user