glArrayElement function

void glArrayElement(
  1. int i
)
GLAPI void GLAPIENTRY glArrayElement (GLint i)

Implementation

void glArrayElement(int i) {
  final glArrayElementLookupFunction =
      libGL.lookupFunction<Void Function(Int32 i), void Function(int i)>(
          'glArrayElement');
  return glArrayElementLookupFunction(i);
}