Skip to Main Content
A Hitchhiker's Guide to Virtual Reality
book

A Hitchhiker's Guide to Virtual Reality

by Karen McMenemy, Robin Stuart Ferguson
July 2007
Beginner to intermediate content levelBeginner to intermediate
604 pages
17h 36m
English
A K Peters/CRC Press
Content preview from A Hitchhiker's Guide to Virtual Reality
i
i
i
i
i
i
i
i
13.2. System Independence with the GLUT Libraries 333
// The following code illustrates the format of the loading code
// - an external JPEG image manipulation library written in
// C is used from our C++ application
extern "C" {
extern long ReadJPG(char
*
filename, short info_only);
long x_sizeJ, y_sizeJ; // used by Library code
unsigned char
*
lpImage=NULL;
};
static unsigned char
*
LoadJpeg(char
*
filename, int
*
x, int
*
y){
unsigned char
*
screen;
long xs,ys,imagesize;
if(ReadJPG(filename,1) == 0)return NULL;
// test image is OK - if not return no pixels
xs=x_sizeJ; ys=y_sizeJ;
// if OK get width and height
imagesize=xs
*
ys
*
3
*
sizeof(unsigned char);
// allocate ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Developing Virtual Reality Applications

Developing Virtual Reality Applications

Alan B. Craig, William R. Sherman, Jeffrey D. Will
Virtual Reality Blueprints

Virtual Reality Blueprints

Charles Palmer, John Williamson
Step into the Metaverse

Step into the Metaverse

Mark van Rijmenam

Publisher Resources

ISBN: 9781568814773