glColor4usv function
GLAPI void GLAPIENTRY glColor4usv (const GLushort *v)
Implementation
void glColor4usv(Pointer<Uint16> v) {
final glColor4usvLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Uint16> v),
void Function(Pointer<Uint16> v)>('glColor4usv');
return glColor4usvLookupFunction(v);
}