Esempio n. 1
0
func (texture *Texture) Unlock() {
	_texture := (*C.SDL_Texture)(unsafe.Pointer(texture))
	(C.SDL_UnlockTexture(_texture))
}
Esempio n. 2
0
// Texture (https://wiki.libsdl.org/SDL_UnlockTexture)
func (texture *Texture) Unlock() {
	C.SDL_UnlockTexture(texture.cptr())
}
Esempio n. 3
0
func (t *Texture) Unlock() {
	C.SDL_UnlockTexture(t.c)
}