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