Is it possible to add parameter names from typedefs to glext functions ? Currently, most of params are arg0-argn, because in glext.h, we have
GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte, GLbyte, GLbyte);
typedef void (APIENTRY * PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue);
and parameters names are defined only in typedef. Typedefs are already coupled to functions in GLEmitter, but it seems that they do not contain info about parameter types/names ?? It is a bit too big program to go through all of it now, so I though it will be faster to ask.
Are the names for typedef function arguments available anywhere ? If yes, where ? With this info I should be able to replace empty arg names in GLEmitter (only for GL interface, rest is not really important).