Home > Store

OpenGL® Reference Manual: The Official Reference Document to OpenGL, Version 1.2, 3rd Edition

Register your product to gain access to bonus material or receive a coupon.

OpenGL® Reference Manual: The Official Reference Document to OpenGL, Version 1.2, 3rd Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2000
  • Dimensions: 7-3/8x9-1/8
  • Pages: 704
  • Edition: 3rd
  • Book
  • ISBN-10: 0-201-65765-1
  • ISBN-13: 978-0-201-65765-4

OpenGL is a powerful software interface used to produce high-quality computer generated images and interactive graphics applications by rendering 2D and 3D geometric objects, bitmaps, and color images.

Officially sanctioned by the OpenGL Architecture Review Board (ARB), the OpenGL® Reference Manual, Third Edition, is the comprehensive and definitive documentation of all OpenGL functions. This third edition covers OpenGL Version 1.2, including its newest features: 3D texture mapping; multitexturing; mipmapped texture level-of-detail control; new pixel storage formats, including packed and reversed (BGRA) formats; rescaling vertex normals; and specular lighting after texturing. In addition, this book documents the newest routines in the OpenGL Utility Library (GLU 1.3) and added functionality in the OpenGL extension to the X Window System (GLX 1.3).

The comprehensive reference section documents each set of related OpenGL commands. Each reference page contains:

  • A description of the command's parameters
  • The effects on rendering and the OpenGL state by the command
  • Examples
  • Errors generated by functions
  • References to related functions

This book also includes a conceptual overview of OpenGL, a summary of commands and routines, a chapter on defined constants and associated commands, and a description of the ARB extensions, including multitexture and the imaging subset.

The OpenGL Technical Library provides tutorial and reference books for OpenGL. The Library enables programmers to gain a practical understanding of OpenGL and shows them how to unlock its full potential. Originally developed by SGI, the Library continues to evolve under the auspices of the Architecture Review Board (ARB), an industry consortium responsible for guiding the evolution of OpenGL and related technologies. The OpenGL ARB is composed of industry leaders, such as 3Dlabs, Compaq, Evans & Sutherland, Hewlett-Packard, IBM, Intel, Intergraph, Microsoft, NVIDIA, and SGI.

The OpenGL® Reference Manual, Third Edition, has been completely revised and updated for OpenGL, Version 1.2, by Dave Shreiner, in collaboration with the ARB.



0201657651B04062001

Sample Content

Table of Contents



Preface.


What You Should Know Before Reading This Manual.


Style Conventions.


Acknowledgments.


1. Introduction to OpenGL.

OpenGL Fundamentals.

OpenGL Primitives and Commands.

OpenGL as a Procedural Language.

The OpenGL Execution Model.

Basic OpenGL Operation.



2. Overview of Commands and Routines.

The OpenGL Processing Pipeline.

Vertices.

ARB Imaging Subset.

Fragments.

Additional OpenGL Commands.

Using Evaluators.

Performing Selection and Feedback.

Using Display Lists.

Managing Modes and Execution.

Obtaining State Information.

OpenGL Utility Library.

Manipulating Images for Use in Texturing.

Transforming Coordinates.

Polygon Tessellation.

Rendering Spheres, Cylinders, and Disks.

NURBS Curves and Surfaces.

Handling Errors.

OpenGL Extension to the X Window System.

Initialization.

Controlling Rendering.



3. Summary of Commands and Routines.

Notation.

OpenGL Commands.

Primitives.

Vertex Arrays.

Coordinate Transformation.

Coloring and Lighting.

Clipping.

Rasterization.

Pixel Operations.

Textures.

Fog.

Frame Buffer Operations.

Evaluators.

Selection and Feedback.

Display Lists.

Modes and Execution.

State Queries.

ARB Extensions.

Multitexture.

Imaging Subset.

GLU Routines.

Texture Images.

Coordinate Transformation.

Polygon Tessellation.

Quadric Objects.

NURBS Curves and Surfaces.

State Queries.

GLX Routines.

Initialization.

Controlling Rendering.



4. Defined Constants and Associated Commands.


5. OpenGL Reference Pages.


6. GLU Reference Pages.


7. GLX Reference Pages. 0201657651T04062001

Preface

OpenGL is a software interface to graphics hardware (the "GL" stands for Graphics Library). This interface consists of several hundred functions that allow graphics programmers to specify the objects and operations needed to produce high-quality color images of three-dimensional objects. Many of the functions are actually simple variations of each other, so in reality there are only about 180 substantially different functions.

The OpenGL Utility Library (GLU) and the OpenGL Extension to the X Window System (GLX) provide useful supporting features and complement the core OpenGL set of functions. This manual explains what all these functions do. The following list summarizes the contents of each chapter.

  • Chapter 1, Introduction to OpenGL, provides a conceptual overview of OpenGL. It uses a high-level block diagram to explain all the major stages of processing OpenGL performs.
  • Chapter 2, Overview of Commands and Routines, describes in more detail how OpenGL processes input data (in the form of vertices specifying a geometric object or of pixels defining an image) and how you can control this processing using OpenGL functions. GLU and GLX functions are also discussed.
  • Chapter 3, Summary of Commands and Routines, lists the OpenGL commands in groups according to the tasks they perform. The full prototypes provided in this chapter allow you to use it as a quick reference once you understand what the commands accomplish.
  • Chapter 4, Defined Constants and Associated Commands, lists the constants defined in OpenGL and the commands that use them.
  • Chapter 5, OpenGL Reference Pages, which forms the bulk of this manual, contains reference pages describing each set of related OpenGL commands. Commands with parameters that differ only in data type are described together. Each reference page describes the parameters, the effect of the commands, and what errors might result from using the commands. Additionally, this section contains the reference pages for the OpenGL ARB extensions: multitexture and the imaging subset. Not all OpenGL implementations may include support for the ARB extensions.
  • Chapter 6, GLU Reference Pages, contains reference pages for all GLU commands.
  • Chapter 7, GLX Reference Pages, contains reference pages for all GLX commands.

What You Should Know Before Reading This Manual

This manual is intended as the companion reference volume to the OpenGL Programming Guide, Third Edition, by Mason Woo, Jackie Neider, Tom Davis, and Dave Shreiner (Reading, MA: Addison-Wesley, 1999). Both books assume that you know how to program in C.

While the focus of the OpenGL Programming Guide is on how to use OpenGL, the focus of this reference manual is on how OpenGL works. For a complete understanding of OpenGL, you need both types of information. Another difference between the two books is that most of the content of this manual is organized alphabetically, based on the assumption that you know what you don't know and therefore need only to look up a description of a particular command. The OpenGL Programming Guide is organized like a tutorial: it explains the simpler OpenGL concepts first and builds up to the more complex ones. Although you don't have to read the OpenGL Programming Guide to understand the command descriptions in this manual, your understanding of their intended use will be much more complete if you have read it.

If you don't know much about computer graphics, start with the programming guide rather than this reference manual. In addition, consider these books.

  • Computer Graphics: Principles and Practice by James D. Foley, Andries van Dam, Steven K. Feiner, and John F. Hughes (Reading, MA: Addison-Wesley Publishing Company)--This book is an encyclopedic treatment of the subject of computer graphics. It includes a wealth of information but is probably best read after you have some experience with the subject.
  • 3D Computer Graphics: A User's Guide for Artists and Designers by Andrew S. Glassner (New York: Design Press)--This book is a nontechnical, gentle introduction to computer graphics. It focuses on the visual effects that can be achieved rather than on the techniques needed to achieve them.
  • The Way Computer Graphics Work by Olin Lathrop (New York: John Wiley and Sons, Inc.)--This book is a general introduction to computer graphics directed at the beginner to intermediate level computer users. It describes the general principles required for understanding computer graphics.

Style Conventions

This guide uses the following style conventions:

  • Bold--Command and routine names
  • Italics--Variables, arguments, parameter names, spatial dimensions, and document names
  • Regular--Enumerated types and defined constants
  • Monospace font--Code examples

Note that this manual uses abbreviations for command names. Many OpenGL commands are just variations of each other. For simplicity, only the base name of the command is used, and an asterisk is included to indicate that there may be more to the actual command name than is being shown. For example, glVertex* stands for all variations of the command available to specify vertices.

The commands differ mostly in the data type of arguments. Some commands differ in the number of related arguments and whether those arguments can be specified as a vector or whether they must be specified separately in a list. For example, if you use the glVertex2f command, you must supply x and y coordinates as floating-point numbers; with glVertex3sv, you must supply an array of three short integer values for x, y, and z.



0201657651P04062001

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.