/usr/include/allegro5/drawing.h is in liballegro5-dev 2:5.2.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #ifndef __al_included_allegro5_drawing_h
#define __al_included_allegro5_drawing_h
#include "allegro5/color.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Drawing primitives */
AL_FUNC(void, al_clear_to_color, (ALLEGRO_COLOR color));
AL_FUNC(void, al_clear_depth_buffer, (float x));
AL_FUNC(void, al_draw_pixel, (float x, float y, ALLEGRO_COLOR color));
#ifdef __cplusplus
}
#endif
#endif
/* vim: set ts=8 sts=3 sw=3 et: */
|