mirror of
https://github.com/glfw/glfw.git
synced 2026-02-20 14:13:12 +01:00
Use GLFWglproc return type
This commit is contained in:
@@ -519,9 +519,9 @@ int _glfwPlatformExtensionSupported(const char* extension)
|
||||
// Get the function pointer to an OpenGL function
|
||||
//========================================================================
|
||||
|
||||
void* _glfwPlatformGetProcAddress(const char* procname)
|
||||
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
|
||||
{
|
||||
return (void*) _glfw_eglGetProcAddress(procname);
|
||||
return _glfw_eglGetProcAddress(procname);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user