Пример #1
0
Файл: gl.go Проект: james4k/gl
//void glRasterPos4fv (const float *v)
func RasterPos4fv(v *[4]float32) {
	C.glRasterPos4fv((*C.GLfloat)(&v[0]))
}
Пример #2
0
Файл: gl.go Проект: Nvveen/gl
//void glRasterPos4fv (const float *v)
func RasterPos4fv(v []float32) {
	if len(v) != 4 {
		panic(ErrorInputSize)
	}
	C.glRasterPos4fv((*C.GLfloat)(&v[0]))
}