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