Rare Jon 'maddog' Hall video interview - and an even rarer maddog video speech excerp


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Rare Jon 'maddog' Hall video interview - and an even rarer maddog video speech excerp
# 1  
Old 02-13-2008
Rare Jon 'maddog' Hall video interview - and an even rarer maddog video speech excerp

Wed, 13 Feb 2008 16:00:00 GMT
He's a popular guy, that maddog. And with good reason. It's a little surprising that there is nary a video of him speaking to be seen anywhere on the Web. So here you go, video-lovers and maddog fans. These videos are for you.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Video Cards :: Video Memory Intercept and Redirect

I need a broad spectrum understanding on this subject, and any help would be greatly appreciated. First of all, as I understand it... The way the video hardware works is the CPU sends information about input and possible changes to the display, the video card receives these changes, makes the... (2 Replies)
Discussion started by: ciNG
2 Replies

2. Virtualization and Cloud Computing

Hyperic's CloudStatus demo and interview (video)

07-23-2008 11:00 AM Jon Travis, principal engineer for Hyperic, explains the company's new CloudStatus utility in this video interview. CloudStatus is free, it's open source, and you can access it through your Web browser. Right now it works only with Amazon's cloud computing services -- which... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
create_video_bitmap(3alleg4)					  Allegro manual				      create_video_bitmap(3alleg4)

NAME
create_video_bitmap - Creates a video memory bitmap. Allegro game programming library. SYNOPSIS
#include <allegro.h> BITMAP *create_video_bitmap(int width, int height); DESCRIPTION
Allocates a video memory bitmap of the specified size. This can be used to allocate offscreen video memory for storing source graphics ready for a hardware accelerated blitting operation, or to create multiple video memory pages which can then be displayed by calling show_video_bitmap(). Read the introduction of this chapter for a comparison with other types of bitmaps and other specific details. Warning: video memory bitmaps are usually allocated from the same space as the screen bitmap, so they may overlap with it; it is therefore not a good idea to use the global screen at the same time as any surfaces returned by this function. RETURN VALUE
Returns a pointer to the bitmap on success, or NULL if you have run out of video ram. Remember to destroy this bitmap before any subsequent call to set_gfx_mode(). SEE ALSO
create_bitmap(3alleg4), create_bitmap_ex(3alleg4), create_system_bitmap(3alleg4), create_sub_bitmap(3alleg4), destroy_bitmap(3alleg4), screen(3alleg4), show_video_bitmap(3alleg4), gfx_capabilities(3alleg4), is_video_bitmap(3alleg4), clear_bitmap(3alleg4), clear_to_color(3alleg4), ex3buf(3alleg4), exaccel(3alleg4), exflip(3alleg4), exupdate(3alleg4) Allegro version 4.4.2 create_video_bitmap(3alleg4)