glIndexsv function

void glIndexsv(
  1. Pointer<Int16> c
)
GLAPI void GLAPIENTRY glIndexsv (const GLshort *c)

Implementation

void glIndexsv(Pointer<Int16> c) {
  final glIndexsvLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Int16> c),
      void Function(Pointer<Int16> c)>('glIndexsv');
  return glIndexsvLookupFunction(c);
}