Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

set_palette_range(3alleg4) [opendarwin man page]

set_palette_range(3alleg4)					  Allegro manual					set_palette_range(3alleg4)

NAME
set_palette_range - Sets a specific range of the palette. Allegro game programming library. SYNOPSIS
#include <allegro.h> void set_palette_range(const PALETTE p, int from, int to, int vsync); DESCRIPTION
Sets the palette entries between from and to (inclusive: pass 0 and 255 to set the entire palette). If vsync is set it waits for the verti- cal retrace, otherwise it sets the colors immediately. Example: PALETTE palette; ... /* Modify the first 16 entries. */ change_first_16_colors(palette); /* Now update them waiting for vsync. */ set_palette_range(palette, 0, 15, 1); SEE ALSO
set_palette(3alleg4), get_palette_range(3alleg4), exzbuf(3alleg4) Allegro version 4.4.2 set_palette_range(3alleg4)

Check Out this Related Man Page

exscale(3alleg4)						  Allegro manual						  exscale(3alleg4)

NAME
exscale - Loading PCX files and bitmap stretching. Allegro game programming library. SYNOPSIS
#include <allegro.h> Example exscale DESCRIPTION
This example demonstrates how to use PCX files, palettes and stretch blits. It loads a PCX file, sets its palette and does some random stretch_blits. Don't worry - it's VERY slowed down using vsync(). SEE ALSO
BITMAP(3alleg4), END_OF_MAIN(3alleg4), PALETTE(3alleg4), SCREEN_H(3alleg4), SCREEN_W(3alleg4), allegro_error(3alleg4), alle- gro_init(3alleg4), allegro_message(3alleg4), blit(3alleg4), destroy_bitmap(3alleg4), install_keyboard(3alleg4), keypressed(3alleg4), load_pcx(3alleg4), replace_filename(3alleg4), screen(3alleg4), set_gfx_mode(3alleg4), set_palette(3alleg4), stretch_blit(3alleg4), vsync(3alleg4) Allegro version 4.4.2 exscale(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