glIndexdv function
GLAPI void GLAPIENTRY glIndexdv (const GLdouble *c)
Implementation
void glIndexdv(Pointer<Double> c) {
final glIndexdvLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Double> c),
void Function(Pointer<Double> c)>('glIndexdv');
return glIndexdvLookupFunction(c);
}