예제 #1
0
파일: vertex.go 프로젝트: Nvveen/gl
//void glVertex2sv (const int16 *v)
func Vertex2sv(v []int16) {
	if len(v) != 2 {
		panic(ErrorInputSize)
	}
	C.glVertex2sv((*C.GLshort)(&v[0]))
}
예제 #2
0
파일: vertex.go 프로젝트: jasonrpowers/gl
//void glVertex2sv (const int16 *v)
func Vertex2sv(v *[2]int16) {
	C.glVertex2sv((*C.GLshort)(&v[0]))
}