예제 #1
0
파일: gldebug.go 프로젝트: Miaque/mojo
func VertexAttrib3fv(dst Attrib, src []float32) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.VertexAttrib3fv(%v, len(%d)) %v", dst, len(src), errstr)
	}()
	C.glVertexAttrib3fv(dst.c(), (*C.GLfloat)(&src[0]))
}
예제 #2
0
파일: gl_opengles.go 프로젝트: tanema/amore
func VertexAttrib3fv(dst Attrib, src []float32) {
	C.glVertexAttrib3fv(dst.c(), (*C.GLfloat)(&src[0]))
}
예제 #3
0
파일: gles2.go 프로젝트: remogatto/egles
func VertexAttrib3fv(
	indx uint32, values *float32) {
	C.glVertexAttrib3fv(
		C.GLuint(indx),
		(*C.GLfloat)(values))
}
예제 #4
0
파일: attriblocation.go 프로젝트: Nvveen/gl
func (indx AttribLocation) Attrib3fv(values []float32) {
	if len(values) != 3 {
		panic(ErrorInputSize)
	}
	C.glVertexAttrib3fv(C.GLuint(indx), (*C.GLfloat)(&values[0]))
}
예제 #5
0
파일: es2.go 프로젝트: nick-fedesna/egles
func VertexAttrib3fv(indx uint, values []float32) {
	C.glVertexAttrib3fv(C.GLuint(indx), (*C.GLfloat)(&values[0]))
}
예제 #6
0
파일: attrib.go 프로젝트: jackscan/go-gles2
func (a Vec3Attrib) Setv(values []float32) {
	C.glVertexAttrib3fv(a.index, (*C.GLfloat)(&values[0]))
}
예제 #7
0
func (indx AttribLocation) Attrib3fv(values *[3]float32) {
	C.glVertexAttrib3fv(C.GLuint(indx), (*C.GLfloat)(&values[0]))
}