set_clip_state (3) - Linux Manuals
set_clip_state: Turns on or off the clipping of a bitmap. Allegro game programming library.
Command to display set_clip_state
manual in Linux: $ man 3 set_clip_state
NAME
set_clip_state - Turns on or off the clipping of a bitmap. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
void set_clip_state(BITMAP *bitmap, int state)
DESCRIPTION
Turns on (if state is non-zero) or off (if state is zero) clipping for the
specified bitmap. Turning clipping off may slightly speed up some drawing
operations (usually a negligible difference, although every little helps)
but will result in your program dying a horrible death if you try to draw
beyond the edges of the bitmap.
Pages related to set_clip_state