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