Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
_getpixel(3)			Allegro	manual			  _getpixel(3)

NAME
       _getpixel,  _getpixel15,	_getpixel16, _getpixel24, _getpixel32 -	Faster
       specific	version	of getpixel(). Allegro game programming	library.

SYNOPSIS
       #include	<allegro.h>

       int _getpixel(BITMAP *bmp, int x, int y);

       int _getpixel15(BITMAP *bmp, int	x, int y);

       int _getpixel16(BITMAP *bmp, int	x, int y);

       int _getpixel24(BITMAP *bmp, int	x, int y);

       int _getpixel32(BITMAP *bmp, int	x, int y);

DESCRIPTION
       Faster inline versions of getpixel() for	specific color	depths.	 These
       won't  work in mode-X, and don't	do any clipping, so you	must make sure
       the point lies inside the bitmap.

RETURN VALUE
       Returns the value of the	pixel in the color format you specified.

SEE ALSO
       getpixel(3)

Allegro				 version 4.4.3			  _getpixel(3)

NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | SEE ALSO

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=_getpixel&sektion=3&manpath=FreeBSD+13.0-RELEASE+and+Ports>

home | help