Hmm, you are right.
Try adding this into your code file:
APTR AROSMesaGetProcAddress(const GLubyte * procname)
{
return AROSMesaGetProcAddressInternal(procname)
}
Above code failed, i searched lib/ include files too but not found anything about AROSMesagetProcAddressInternal() but
i found another function does works.
#ifdef __AROS__
#include <GL/glut.h>
#include <exec/types.h>
APTR AROSMesaGetProcAddress(const GLubyte *procname);
APTR AROSMesaGetProcAddress(const GLubyte *procname)
{
return glAGetProcAddress(procname); //works
//return AROSMesaGetProcAddressInternal(procname);
}
#endif
which version of opengl we have ? and also i need deep down info about aros version of mesa / gl /egl , is there info page or link?
thanks