DAllegro5 icon indicating copy to clipboard operation
DAllegro5 copied to clipboard

Missing ALLEGRO_ constants

Open katastic opened this issue 7 years ago • 1 comments

There are missing constants that I've had to look up in the Allegro headers and define myself. For example:

int ALLEGRO_PIXEL_FORMAT_ANY = 0; int ALLEGRO_VSYNC = 26; int ALLEGRO_MAX_BITMAP_SIZE = 27;

(p.s. Thanks for the hard work!)

katastic avatar Oct 04 '18 08:10 katastic

These all seem to be defined:

  • https://github.com/SiegeLord/DAllegro5/blob/master/allegro5/color.d#L15
  • https://github.com/SiegeLord/DAllegro5/blob/master/allegro5/display.d#L58
  • https://github.com/SiegeLord/DAllegro5/blob/master/allegro5/display.d#L59

rcorre avatar Oct 14 '18 18:10 rcorre