glIndexdv function opengl

void glIndexdv(
  1. Pointer<Double> c
)
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);
}