glIndexsv function opengl
GLAPI void GLAPIENTRY glIndexsv( const GLshort *c )
Implementation
void glIndexsv(Pointer<Int16> c) {
final glIndexsvAsFunction = _glIndexsv
.cast<NativeFunction<Void Function(Pointer<Int16> c)>>()
.asFunction<void Function(Pointer<Int16> c)>();
return glIndexsvAsFunction(c);
}