예제 #1
0
파일: attrib.go 프로젝트: jackscan/go-gles3
func (a VertexArray) Delete() {
	C.glDeleteVertexArrays(1, (*C.GLuint)(&a))
}
예제 #2
0
파일: attrib.go 프로젝트: jackscan/go-gles3
func DeleteVertexArrays(arrays []VertexArray) {
	C.glDeleteVertexArrays(C.GLsizei(len(arrays)), (*C.GLuint)(&arrays[0]))
}