Exemplo n.º 1
0
// Destroys a display. Use this only when really needed!
func (self *Display) Destroy() {
	if self.handle != nil {
		C.al_destroy_display(self.handle)
	}
	self.handle = nil
}
Exemplo n.º 2
0
func (d *Display) Destroy() {
	C.al_destroy_display((*C.ALLEGRO_DISPLAY)(unsafe.Pointer(d)))
}
Exemplo n.º 3
0
func (d *Display) Destroy() {

	C.al_destroy_display((*C.ALLEGRO_DISPLAY)(d))

}