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