1draw_rle_sprite(3) Allegro manual draw_rle_sprite(3)
2
3
4
6 draw_rle_sprite - Draws an RLE sprite. Allegro game programming
7 library.
8
10 #include <allegro.h>
11
12
13 void draw_rle_sprite(BITMAP *bmp, const RLE_SPRITE *sprite, int x, int
14 y);
15
17 Draws an RLE sprite onto a bitmap at the specified position. Example:
18
19 RLE_SPRITE *rle_sprite;
20 ...
21 draw_rle_sprite(screen, rle_sprite, 100, 100);
22
23
25 get_rle_sprite(3), draw_sprite(3), draw_compiled_sprite(3),
26 draw_trans_rle_sprite(3), draw_lit_rle_sprite(3), bitmap_mask_color(3)
27
28
29
30Allegro version 4.4.3 draw_rle_sprite(3)