1_putpixel(3) Allegro manual _putpixel(3)
2
3
4
6 _putpixel, _putpixel15, _putpixel16, _putpixel24, _putpixel32 - Faster
7 specific version of putpixel(). Allegro game programming library.
8
10 #include <allegro.h>
11
12
13 void _putpixel(BITMAP *bmp, int x, int y, int color);
14
15 void _putpixel15(BITMAP *bmp, int x, int y, int color);
16
17 void _putpixel16(BITMAP *bmp, int x, int y, int color);
18
19 void _putpixel24(BITMAP *bmp, int x, int y, int color);
20
21 void _putpixel32(BITMAP *bmp, int x, int y, int color);
22
24 Like the regular putpixel(), but much faster because they are impleā
25 mented as an inline assembler functions for specific color depths.
26 These won't work in mode-X graphics modes, don't perform any clipping
27 (they will crash if you try to draw outside the bitmap!), and ignore
28 the drawing mode.
29
30
32 putpixel(3), makecol(3)
33
34
35
36Allegro version 4.4.3 _putpixel(3)