コード例 #1
0
ファイル: gles2.go プロジェクト: remogatto/egles
func BindTexture(
	target Enum, texture uint32) {
	C.glBindTexture(
		C.GLenum(target),
		C.GLuint(texture))

}
コード例 #2
0
ファイル: gldebug.go プロジェクト: Miaque/mojo
func BindTexture(target Enum, t Texture) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.BindTexture(%v, %v) %v", target, t, errstr)
	}()
	C.glBindTexture(target.c(), t.c())
}
コード例 #3
0
ファイル: gl_opengles.go プロジェクト: tanema/amore
func BindTexture(target Enum, t Texture) {
	C.glBindTexture(target.c(), t.c())
}
コード例 #4
0
ファイル: texture.go プロジェクト: Nvveen/gl
// Unbind this texture
func (texture Texture) Unbind(target GLenum) {
	C.glBindTexture(C.GLenum(target), 0)
}
コード例 #5
0
ファイル: texture.go プロジェクト: Nvveen/gl
// Bind this texture as target
func (texture Texture) Bind(target GLenum) {
	C.glBindTexture(C.GLenum(target), C.GLuint(texture))
}
コード例 #6
0
ファイル: gl.go プロジェクト: extrame/gl
// Unbind calls glBindTexture with a 0 argument
func (Texture) Unbind(targ int) {
	C.glBindTexture(C.GLenum(targ), 0)
}
コード例 #7
0
ファイル: gl.go プロジェクト: extrame/gl
// Bind calls glBindTexture
func (t Texture) Bind(targ int) {
	C.glBindTexture(C.GLenum(targ), C.GLuint(t))
}
コード例 #8
0
ファイル: texture.go プロジェクト: jackscan/go-gles2
func BindTexture(target TextureTarget, texture Texture) {
	C.glBindTexture(C.GLenum(target), C.GLuint(texture))
}
コード例 #9
0
ファイル: texture.go プロジェクト: eaburns/gl
// Bind binds a named texture to a texturing target.
func (tex Texture) Bind(targ TextureTarget) {
	C.glBindTexture(C.GLenum(targ), C.GLuint(tex))
}