Exemple #1
0
Fichier : gl.go Projet : james4k/gl
//void glRasterPos2sv (const int16 *v)
func RasterPos2sv(v *[2]int16) {
	C.glRasterPos2sv((*C.GLshort)(&v[0]))
}
Exemple #2
0
Fichier : gl.go Projet : Nvveen/gl
//void glRasterPos2sv (const int16 *v)
func RasterPos2sv(v []int16) {
	if len(v) != 2 {
		panic(ErrorInputSize)
	}
	C.glRasterPos2sv((*C.GLshort)(&v[0]))
}