// Gets the display flags of the display func (self *Display) DisplayFlags() int { return int(C.al_get_display_flags(self.handle)) }
func (d *Display) GetFlags() int32 { return int32(C.al_get_display_flags((*C.ALLEGRO_DISPLAY)(unsafe.Pointer(d)))) }
func (d *Display) GetFlags() int { return int(C.al_get_display_flags((*C.ALLEGRO_DISPLAY)(d))) }