glColor4sv function
GLAPI void GLAPIENTRY glColor4sv (const GLshort *v)
Implementation
void glColor4sv(Pointer<Int16> v) {
final glColor4svLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Int16> v),
void Function(Pointer<Int16> v)>('glColor4sv');
return glColor4svLookupFunction(v);
}