glIndexdv function opengl
GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c )
Implementation
void glIndexdv(Pointer<Double> c) {
final glIndexdvAsFunction = _glIndexdv
.cast<NativeFunction<Void Function(Pointer<Double> c)>>()
.asFunction<void Function(Pointer<Double> c)>();
return glIndexdvAsFunction(c);
}