Sponsored Content
The Lounge What is on Your Mind? Hillary Clinton adopts alien baby Post 302384813 by pupp on Wednesday 6th of January 2010 10:46:49 AM
Old 01-06-2010
Hillary Clinton adopts alien baby

does anyone laugh really loudly every time the "hillary clinton adopts an alien baby" logo shows up ? I can't stop laughing again. Smilie
 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

init adopts zombie process?

Hi I tried to create a zombie process with the following program: int main(void) { pid_t pid; int status; if ((pid = fork()) < 0) perror("fork error"); else if (pid == 0){ /* child process*/ exit(0); } ... (3 Replies)
Discussion started by: password636
3 Replies

2. What is on Your Mind?

Linux baby rocker

Any unix.com forummers who have young babies might like to consider this method: YouTube - Linux Baby Rocker (0 Replies)
Discussion started by: mazzz_in_Leeds
0 Replies

3. Shell Programming and Scripting

Installing RPM package using alien on WSL Ubuntu

I was just flirting with the idea of installing one package (bcl2fas2) on my WSL:Ubuntu using alien. However, when I run sudo alien bcl2fastq2-v2.20.0.422-Linux-x86_64.rpm I get the following error: Package build failed. Here's the log: dh_testdir dh_testdir dh_testroot dh_prep... (0 Replies)
Discussion started by: Xterra
0 Replies
draw_character_ex(3alleg4)                                        Allegro manual                                        draw_character_ex(3alleg4)

NAME
draw_character_ex - Draws non transparent pixels of the sprite with a color. Allegro game programming library. SYNOPSIS
#include <allegro.h> void draw_character_ex(BITMAP *bmp, BITMAP *sprite, int x, int y, color, bg); DESCRIPTION
Draws a copy of the sprite bitmap onto the destination bitmap at the specified position, drawing transparent pixels in the background color (or skipping them if the background color is -1) and setting all other pixels to the specified color. Transparent pixels are marked by a zero in 256-color modes or bright pink for truecolor data (maximum red and blue, zero green). The sprite must be an 8-bit image, even if the destination is a truecolor bitmap. Example: BITMAP *logo; ... /* Draw the logo silhouette in red. */ draw_character_ex(screen, logo, SCREEN_W / 2, SCREEN_H / 2, makecol(255, 0, 0), -1); SEE ALSO
draw_sprite(3alleg4), bitmap_mask_color(3alleg4) Allegro version 4.4.2 draw_character_ex(3alleg4)
All times are GMT -4. The time now is 11:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy