1
0
Fork 0

eglx: implement cogl_get_proc_address()

http://bugzilla.openedhand.com/show_bug.cgi?id=2124
This commit is contained in:
Brian Tarricone 2010-03-25 20:55:31 -07:00 committed by Neil Roberts
parent 36903dfdcc
commit b0cc98fdce

View file

@ -27,9 +27,11 @@
#include "cogl.h"
#include <EGL/egl.h>
CoglFuncPtr
_cogl_winsys_get_proc_address (const char *name)
{
return NULL;
return (CoglFuncPtr) eglGetProcAddress (name);
}