예제 #1
0
파일: gl.go 프로젝트: james4k/gl
//void glRasterPos4iv (const int *v)
func RasterPos4iv(v *[4]int32) {
	C.glRasterPos4iv((*C.GLint)(&v[0]))
}
예제 #2
0
파일: gl.go 프로젝트: Nvveen/gl
//void glRasterPos4iv (const int *v)
func RasterPos4iv(v []int32) {
	if len(v) != 4 {
		panic(ErrorInputSize)
	}
	C.glRasterPos4iv((*C.GLint)(&v[0]))
}