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