.\" Generated by the Allegro makedoc utility .TH putpixel 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME putpixel \- Writes a pixel into a bitmap. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void putpixel(BITMAP *bmp, int x, int y, int color); .SH DESCRIPTION Writes a pixel to the specified position in the bitmap, using the current drawing mode and the bitmap's clipping rectangle. Example: .nf putpixel(screen, 10, 30, some_color); .fi .SH SEE ALSO .BR getpixel (3alleg4), .BR _putpixel (3alleg4), .BR drawing_mode (3alleg4), .BR makecol (3alleg4), .BR ex12bit (3alleg4), .BR exalpha (3alleg4), .BR exflame (3alleg4), .BR exjoy (3alleg4), .BR exstars (3alleg4), .BR exswitch (3alleg4)