Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stretch_blit(3alleg4) [opendarwin man page]

stretch_blit(3alleg4)						  Allegro manual					     stretch_blit(3alleg4)

NAME
stretch_blit - Scales a rectangular area from one bitmap to another. Allegro game programming library. SYNOPSIS
#include <allegro.h> void stretch_blit(BITMAP *source, BITMAP *dest, int source_x, source_y, source_width, source_height, int dest_x, dest_y, dest_width, dest_height); DESCRIPTION
Like blit(), except it can scale images (so the source and destination rectangles don't need to be the same size) and requires the source and destination bitmaps to be of the same color depth. This routine doesn't do as much safety checking as the regular blit(): in particular you must take care not to copy from areas outside the source bitmap, and you cannot blit between overlapping regions, ie. you must use dif- ferent bitmaps for the source and the destination. Moreover, the source must be a memory bitmap. Example: BITMAP *bmp; ... /* Stretch bmp to fill the screen. */ stretch_blit(bmp, screen, 0, 0, bmp->w, bmp->h, 0, 0, SCREEN_W, SCREEN_H); SEE ALSO
blit(3alleg4), masked_stretch_blit(3alleg4), stretch_sprite(3alleg4), exalpha(3alleg4), exconfig(3alleg4), exscale(3alleg4), extrans(3alleg4), extrans2(3alleg4) Allegro version 4.4.2 stretch_blit(3alleg4)

Check Out this Related Man Page

stretch_blit(3alleg4)						  Allegro manual					     stretch_blit(3alleg4)

NAME
stretch_blit - Scales a rectangular area from one bitmap to another. Allegro game programming library. SYNOPSIS
#include <allegro.h> void stretch_blit(BITMAP *source, BITMAP *dest, int source_x, source_y, source_width, source_height, int dest_x, dest_y, dest_width, dest_height); DESCRIPTION
Like blit(), except it can scale images (so the source and destination rectangles don't need to be the same size) and requires the source and destination bitmaps to be of the same color depth. This routine doesn't do as much safety checking as the regular blit(): in particular you must take care not to copy from areas outside the source bitmap, and you cannot blit between overlapping regions, ie. you must use dif- ferent bitmaps for the source and the destination. Moreover, the source must be a memory bitmap. Example: BITMAP *bmp; ... /* Stretch bmp to fill the screen. */ stretch_blit(bmp, screen, 0, 0, bmp->w, bmp->h, 0, 0, SCREEN_W, SCREEN_H); SEE ALSO
blit(3alleg4), masked_stretch_blit(3alleg4), stretch_sprite(3alleg4), exalpha(3alleg4), exconfig(3alleg4), exscale(3alleg4), extrans(3alleg4), extrans2(3alleg4) Allegro version 4.4.2 stretch_blit(3alleg4)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies

2. OS X (Apple)

Undeletable file

Greetings, I'm trying to delete a file with a weird name from within Terminal on a Mac. It's a very old file (1992) with null characters in the name: “␀␀Word FinderÂŽ Plus™”. Here are some examples of what I've tried: 12FX009:5 dpontius$ ls ␀␀Word FinderÂŽ Plus™ 12FX009:5 dpontius$ rm... (29 Replies)
Discussion started by: dpontius
29 Replies