.\" Generated by the Allegro makedoc utility .TH _putpixel 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME _putpixel, _putpixel15, _putpixel16, _putpixel24, _putpixel32 \- Faster specific version of putpixel(). Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void _putpixel(BITMAP *bmp, int x, int y, int color); .B void _putpixel15(BITMAP *bmp, int x, int y, int color); .B void _putpixel16(BITMAP *bmp, int x, int y, int color); .B void _putpixel24(BITMAP *bmp, int x, int y, int color); .B void _putpixel32(BITMAP *bmp, int x, int y, int color); .SH DESCRIPTION Like the regular putpixel(), but much faster because they are implemented as an inline assembler functions for specific color depths. These won't work in mode-X graphics modes, don't perform any clipping (they will crash if you try to draw outside the bitmap!), and ignore the drawing mode. .SH SEE ALSO .BR putpixel (3alleg4), .BR makecol (3alleg4)