glColor4sv function opengl
GLAPI void GLAPIENTRY glColor4sv( const GLshort *v )
Implementation
void glColor4sv(Pointer<Int16> v) {
final glColor4svAsFunction = _glColor4sv
.cast<NativeFunction<Void Function(Pointer<Int16> v)>>()
.asFunction<void Function(Pointer<Int16> v)>();
return glColor4svAsFunction(v);
}