type A_Bitmap_Loader is access function( filename : C.Strings.chars_ptr; pal : A_RGB ) return A_Bitmap;
type A_Bitmap_Saver is access function( filename : C.Strings.chars_ptr; bmp : A_Bitmap; pal : A_RGB ) return Integer;
subtype Conv_Type is Unsigned_32;
COLORCONV_NONE : constant Conv_Type;
COLORCONV_8_TO_15 : constant Conv_Type;
COLORCONV_8_TO_16 : constant Conv_Type;
COLORCONV_8_TO_24 : constant Conv_Type;
COLORCONV_8_TO_32 : constant Conv_Type;
COLORCONV_15_TO_8 : constant Conv_Type;
COLORCONV_15_TO_16 : constant Conv_Type;
COLORCONV_15_TO_24 : constant Conv_Type;
COLORCONV_15_TO_32 : constant Conv_Type;
COLORCONV_16_TO_8 : constant Conv_Type;
COLORCONV_16_TO_15 : constant Conv_Type;
COLORCONV_16_TO_24 : constant Conv_Type;
COLORCONV_16_TO_32 : constant Conv_Type;
COLORCONV_24_TO_8 : constant Conv_Type;
COLORCONV_24_TO_15 : constant Conv_Type;
COLORCONV_24_TO_16 : constant Conv_Type;
COLORCONV_24_TO_32 : constant Conv_Type;
COLORCONV_32_TO_8 : constant Conv_Type;
COLORCONV_32_TO_15 : constant Conv_Type;
COLORCONV_32_TO_16 : constant Conv_Type;
COLORCONV_32_TO_24 : constant Conv_Type;
COLORCONV_32A_TO_8 : constant Conv_Type;
COLORCONV_32A_TO_15 : constant Conv_Type;
COLORCONV_32A_TO_16 : constant Conv_Type;
COLORCONV_32A_TO_24 : constant Conv_Type;
COLORCONV_DITHER_PAL : constant Conv_Type;
COLORCONV_DITHER_HI : constant Conv_Type;
COLORCONV_KEEP_TRANS : constant Conv_Type;
COLORCONV_DITHER : constant Conv_Type;
COLORCONV_EXPAND_256 : constant Conv_Type;
COLORCONV_REDUCE_TO_256 : constant Conv_Type;
COLORCONV_EXPAND_15_TO_16 : constant Conv_Type;
COLORCONV_REDUCE_16_TO_15 : constant Conv_Type;
COLORCONV_EXPAND_HI_TO_TRUE : constant Conv_Type;
COLORCONV_REDUCE_TRUE_TO_HI : constant Conv_Type;
COLORCONV_24_EQUALS_32 : constant Conv_Type;
COLORCONV_TOTAL : constant Conv_Type;
COLORCONV_PARTIAL : constant Conv_Type;
COLORCONV_MOST : constant Conv_Type;
COLORCONV_KEEP_ALPHA : constant Conv_Type;
procedure Register_Bitmap_File_Type
( | ext | : String; |
load | : A_Bitmap_Loader; | |
save | : A_Bitmap_Saver ); |
procedure Set_Color_Conversion
( | mode | : Conv_Type ); |