glIndexs function

void glIndexs(
  1. int c
)
GLAPI void GLAPIENTRY glIndexs (GLshort c)

Implementation

void glIndexs(int c) {
  final glIndexsLookupFunction = libGL
      .lookupFunction<Void Function(Int16 c), void Function(int c)>('glIndexs');
  return glIndexsLookupFunction(c);
}