//void glColor4sv (const int16 *v) func Color4sv(v []int16) { if len(v) != 4 { panic(ErrorInputSize) } C.glColor4sv((*C.GLshort)(&v[0])) }
//void glColor4sv (const int16 *v) func Color4sv(v *[4]int16) { C.glColor4sv((*C.GLshort)(&v[0])) }