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