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