--
-- Copyright (c) 2013 Kevin Wellwood
-- All rights reserved.
--
-- This source code is distributed under the Modified BSD License. For terms and
-- conditions, see license.txt.
--
with Allegro.Color; use Allegro.Color;
package Allegro.Drawing is
procedure Al_Clear_To_Color( color : Allegro_Color );
pragma Import( C, Al_Clear_To_Color, "al_clear_to_color" );
procedure Al_Draw_Pixel( x, y : Float; color : Allegro_Color );
pragma Import( C, Al_Draw_Pixel, "al_draw_pixel" );
end Allegro.Drawing;