Home > Store

Cg Tutorial, The: The Definitive Guide to Programmable Real-Time Graphics

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

Cg Tutorial, The: The Definitive Guide to Programmable Real-Time Graphics

Book

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

Description

  • Copyright 2003
  • Edition: 1st
  • Book
  • ISBN-10: 0-321-19496-9
  • ISBN-13: 978-0-321-19496-1

"Cg is the key to unlocking the power of a new generation of programmable graphics hardware. This book is the definitive introduction to Cg, and will be essential for anyone programming high-quality real-time graphics. The Cg Tutorial will teach you to use Cg to create effects never before available for real-time applications."
--Larry Gritz, Author of Advanced RenderMan (Morgan Kaufmann, 2000)
"An important and timely book: Pixel-level procedural textures--animated clouds, fire, water, the whole bag of procedural tricks--finally go from the movie screen to the desktop. Access to computation of this power through a C-like language will usher in an exciting new era for the graphics community."
--Ken Perlin, Professor, New York University

Cg (C for graphics) is a complete programming environment for the fast creation of special effects and real-time cinematic quality experiences on multiple platforms. By providing a new level of abstraction, Cg lets developers more directly target OpenGL®, DirectX®, Windows®, Linux, Mac OS X®, and console platforms, such as the Xbox™, without having to program directly to the graphics hardware assembly language. Cg was developed by NVIDIA® Corporation in close collaboration with Microsoft® Corporation, and is compatible with both the OpenGL API and Microsoft's HLSL for DirectX 9.0.

The Cg Tutorial explains how to implement both basic and advanced techniques for today's programmable GPU architectures.

Major topics covered include:

  • 3D transformations
  • Per-vertex and per-pixel lighting
  • Skinning and key-frame interpolation
  • Environment mapping
  • Bump mapping
  • Fog
  • Performance optimization
  • Projective texturing
  • Cartoon shading
  • Compositing
  • The accompanying CD-ROM includes the tools needed to run the sample programs in the book.

    Downloads

    Supplements

    The Cg Tutorial: The Definitive Guide to Programmable Real-Time Graphics Supplements

    Supplements

    Sample Content

    Downloadable Sample Chapter

    Click below for Sample Chapter(s) related to this title:
    Sample Chapter 7

    Table of Contents



    Figures and Plates.


    Examples.


    Tables.


    Equations.


    Foreword.


    Preface.


    1. Introduction.

    What Is Cg?

    A Language for Programming Graphics Hardware.

    Cg's Data-Flow Model.

    GPU Specialization and CPU Generalization.

    The Performance Rationale for Cg.

    Coexistence with Conventional Languages.

    Other Aspects of Cg.

    The Limited Execution Environment of Cg Programs.

    Vertices, Fragments, and the Graphics Pipeline.

    The Evolution of Computer Graphics Hardware.

    Four Generations of Computer Graphics Hardware.

    The Graphics Hardware Pipeline.

    The Programmable Graphics Pipeline.

    Cg Provides Vertex and Fragment Programmability.

    Cg's Historical Development.

    Microsoft and NVIDIA's Collaboration to Develop Cg and HLSL.

    Noninteractive Shading Languages.

    Programming Interfaces for 3D Graphics.

    The Cg Environment.

    Standard 3D Programming Interfaces: OpenGL and Direct3D.

    The Cg Compiler and Runtime.

    The CgFX Toolkit and File Format.

    Exercises.

    Further Reading.



    2. The Simplest Programs.

    A Simple Vertex Program.

    Output Structures.

    Identifiers.

    Structure Members.

    Vectors.

    Matrices.

    Semantics.

    Functions.

    Input and Output Semantics Are Different.

    The Function Body.

    Compiling Your Example.

    Vertex Program Profiles.

    Classes of Cg Compilation Errors.

    Profile-Dependent Errors.

    The Norm: Multiple Entry Functions.

    Downloading and Configuring Vertex and Fragment Programs.

    A Simple Fragment Program.

    Fragment Program Profiles.

    Rendering with Your Vertex and Fragment Program Examples.

    Rendering a Triangle with OpenGL.

    Rendering a Triangle with Direct3D.

    Getting the Same Results.

    Exercises.

    Further Reading.



    3. Parameters, Textures, and Expressions.

    Parameters.

    Uniform Parameters.

    The const Type Qualifier.

    Varying Parameters.

    Texture Samplers.

    Sampler Objects.

    Sampling Textures.

    Sending Texture Coordinates While Sampling a Texture.

    Math Expressions.

    Operators.

    Profile-Dependent Numeric Data Types.

    Standard Library Built-In Functions.

    2D Twisting.

    Double Vision.

    Exercises.

    Further Reading.



    4. Transformations.

    Coordinate Systems.

    Object Space.

    Homogeneous Coordinates.

    World Space.

    The Modeling Transform.

    Eye Space.

    The View Transform.

    Clip Space.

    The Projection Transform.

    Normalized Device Coordinates.

    Window Coordinates.

    Applying the Theory

    Exercises.

    Further Reading.



    5. Lighting.

    Lighting and Lighting Models.

    Implementing the Basic Per-Vertex Lighting Model.

    The Basic Lighting Model.

    A Vertex Program for Basic Per-Vertex Lighting.

    The Fragment Program for Per-Vertex Lighting.

    Per-Vertex Lighting Results.

    Per-Fragment Lighting.

    Implementing Per-Fragment Lighting.

    The Vertex Program for Per-Fragment Lighting.

    The Fragment Program for Per-Fragment Lighting.

    Creating a Lighting Function.

    Declaring a Function.

    A Lighting Function

    Structures.

    Arrays.

    Flow Control.

    Computing the Diffuse and Specular Lighting.

    Extending the Basic Model.

    Distance Attenuation.

    Adding a Spotlight Effect.

    Directional Lights.

    Exercises.

    Further Reading.



    6. Animation.

    Movement in Time.

    A Pulsating Object.

    The Vertex Program.

    Displacement Calculation.

    Particle Systems.

    Initial Conditions.

    Vectorized Computations.

    The Particle System Parameters.

    The Vertex Program.

    Dressing Up Your Particle System.

    Key-Frame Interpolation.

    Key-Framing Background.

    Interpolation Approaches.

    Basic Key-Frame Interpolation.

    Key-Frame Interpolation with Lighting.

    Vertex Skinning.

    The Theory of Vertex Skinning.

    Vertex Skinning in a Vertex Program.

    Exercises.

    Further Reading.



    7. Environment Mapping Techniques.

    Environment Mapping.

    Cube Map Textures.

    Generating Cube Maps.

    The Environment Mapping Concept.

    Computing Reflection Vectors.

    Assumptions for Environment Mapping.

    Reflective Environment Mapping.

    Application-Specified Parameters.

    The Vertex Program.

    The Fragment Program.

    Control Maps.

    Vertex Program vs. Fragment Program.

    Refractive Environment Mapping.

    The Physics of Refraction.

    The Vertex Program.

    The Fragment Program.

    The Fresnel Effect and Chromatic Dispersion.

    The Fresnel Effect.

    Chromatic Dispersion.

    Application-Specified Parameters.

    The Vertex Program.

    The Fragment Program.

    Exercises.

    Further Reading.



    8. Bump Mapping.

    Bump Mapping a Brick Wall.

    The Brick Wall Normal Map.

    Storing Bump Maps As Normal Map Textures.

    Simple Bump Mapping for a Brick Wall.

    Specular Bump Mapping.

    Bump Mapping Other Geometry.

    Bump Mapping a Brick Floor.

    The Vertex Program for Rendering a Brick Floor.

    Bump Mapping a Torus.

    The Mathematics of the Torus.

    The Bump-Mapped Torus Vertex Program.

    Bump Mapping Textured Polygonal Meshes.

    Examining a Single Triangle.

    Caveats.

    Generalizing to a Polygonal Mesh.

    Combining Bump Mapping with Other Effects.

    Decal Maps.

    Gloss Maps.

    Geometric Self-Shadowing.

    Exercises.

    Further Reading.



    9. Advanced Topics.

    Fog.

    Uniform Fog.

    The Attributes of Fog.

    The Mathematics of Fog.

    Intuiting the Equations.

    Creating Uniform Fog with Cg.

    Nonphotorealistic Rendering.

    Toon Shading.

    Implementing Toon Shading.

    Putting It All Together.

    Problems with This Technique.

    Projective Texturing.

    How Projective Texturing Works.

    Implementing Projective Texturing.

    The Code for Projective Texturing.

    Shadow Mapping.

    Compositing.

    Mapping Input to Output Pixels.

    Basic Compositing Operations.

    Exercises.

    Further Reading.



    10. Profiles and Performance.

    Profile Descriptions.

    The Vertex Shader Profile for DirectX 8.

    The Basic NVIDIA Vertex Program Profile for OpenGL.

    The ARB Vertex Program Profile for OpenGL.

    The Vertex Shader Profiles for DirectX 9.

    The Advanced NVIDIA Vertex Program Profile for OpenGL.

    The Pixel Shader Profiles for DirectX 8.

    The Basic NVIDIA Fragment Program Profile for OpenGL.

    The DirectX 9 Pixel Shader Profiles.

    The ARB Fragment Program Profile for OpenGL.

    The Advanced NVIDIA Fragment Program Profile for OpenGL.

    Performance.

    Use the Cg Standard Library.

    Take Advantage of Uniform Parameters.

    Using Vertex Programs vs. Fragment Programs.

    Data Types and Their Impact on Performance.

    Take Advantage of Vectorization.

    Use Textures to Encode Functions.

    Use Swizzling and Negation Freely.

    Shade Only the Pixels That You Must.

    Shorter Assembly Is Not Necessarily Faster.

    Exercises.

    Further Reading.



    Appendix A. Getting Started with Cg.

    Getting This Book's Accompanying Software.

    Getting the Cg Toolkit.



    Appendix B. The Cg Runtime.

    What Is the Cg Runtime?

    Why Use the Cg Runtime?

    Future-Proofing.

    No Dependency Issues.

    Input Parameter Management.

    How Does the Cg Runtime Work?.

    Header Files.

    Creating a Context.

    Compiling a Program.

    Loading a Program.

    Modifying the Program Parameters.

    Executing a Program.

    Releasing Resources.

    Handling Errors.

    More Details.



    Appendix C. The CgFX File Format.

    What Is CgFX?

    Format Overview.

    Techniques.

    Passes.

    Render States.

    Variables and Semantics.

    Annotations.

    A Sample CgFX File.

    Cg Plug-Ins Supporting the CgFX Format.

    Learning More About CgFX.



    Appendix D. Cg Keywords.

    Cg Keyword List.



    Appendix E. Cg Standard Library Functions.

    Mathematical Functions.

    Geometric Functions.

    Texture Map Functions.

    Derivative Functions.

    Debugging Function.



    Index. 0321194969T02192003

    Preface

    Once upon a time, real-time computer graphics was all about vertices, triangles, and pixels. In fact, it still is. However, the level at which a programmer controls the processing and appearance of these graphics primitives has advanced considerably. It once was the case (even as of a few years ago) that a programmer had to implement all the transformation and rasterization algorithms needed to generate computer-generated images completely with the CPU. Over time, hardware engineers implemented these algorithms via specialized, high-performance 3D graphics hardware. Rather than implement the algorithms directly, programmers learned to access the hardware-provided graphics functionality through standard 3D programming interfaces such as SGI's OpenGL. At first, only high-priced UNIX workstations and flight simulators benefited from specialized 3D graphics hardware because of the cost, but through the miracle of Moore's Law the benefits of graphics hardware acceleration have been transferred to low-cost PCs and game consoles.

    While the performance gained by turning over the brute force tasks of transforming vertices, rasterizing triangles, and updating pixels to dedicated graphics hardware far exceeded the performance possible just with CPU programming, real-time 3D programmers gave up a considerable measure of control for this speed. Developers were limited to using a fixed-function palette of graphics operations that the hardware could handle. Sometimes a skilled and dedicated programmer could coax the graphics programming interface and hardware to accomplish something beyond the ordinary, but this was usually hard, time-consuming work.

    While graphics hardware engineers were advancing the real-time performance of their specialized pixel-pushing hardware, off-line computer graphics software packages such as Pixar's Photorealistic RenderMan were changing the look of movies and television with amazing computer-generated special effects. The pre-recorded nature of movies and most television content makes these media well suited for off-line rendering. Computer-generated images for film and video are not rendered in real-time but instead carefully constructed frame by frame in hours, days, or weeks using standard general-purpose CPUs. The advantage of using general-purpose CPUs is that rather than settling for hard-wired hardware algorithms, CPUs can be programmed for any effect that a programmer or artist might imagine. What these so-called off-line rendering systems lack in relative speed, they make up in rendering quality and realism.

    The flexibility and generality of these off-line rendering systems is what has been missing from preceding generations of 3D graphics hardware. The missing ingredient is programmability.

    Realizing this, computer graphics architects have designed a new generation of graphics hardware that permits an unprecedented degree of programmability so that many of the programmable shading techniques from off-line rendering can be transferred into the realm of real-time graphics.

    Off-line rendering systems developed a type of specialized computer language known as a shading language to express the graphics operations required to make a surface appear how an artist intends the surface to appear. A shading language for programmable graphics hardware provides the same sort of functionality but in the context of real-time graphics hardware. Graphics programmers and artists benefit from such a high-level programming language in much the same way conventional programmers benefit from high-level languages such as C++ or Java. Using a shading language for graphics hardware automates the process of translating the programmer's intent into a form that the graphics hardware can execute.

    This book is about Cg, the premier language for programmable graphics hardware. NVIDIA developed Cg in close collaboration with Microsoft. Cg is the most portable and productive way for you to unleash the power within programmable graphics hardware. This book is a tutorial to teach you how to write Cg programs.

    Intended Audience

    We tried to write this book in a way that makes it valuable to both novices and advanced readers. If youre new to the world of programmable graphics, this book should give you a firm foundation on which to build. If you encounter a word or concept that is foreign to you and not sufficiently explained, consult the glossary or the Further Reading section at the end of each chapter.

    The main audience for this book is 3D game and application programmers, managers of such projects, real-time 3D artists, and computer graphics students--or anyone else interested in learning about the state-of-the-art in real-time rendering. You do not have to be an experienced programmer to learn Cg from this book though you should be relatively familiar with programming language concepts. If you are familiar with C or one of its derivatives, such as C++ or Java, Cg will be very approachable. Cg programs are relatively short, often less than a page, so even an artist or novice programmer can get the gist of Cg from this tutorial and learn to write interesting Cg programs.

    You should know about computer graphics programming and the math involved. Basic algebra and trigonometry helps to appreciate several sections. Familiarity with the mathematics behind basic computer graphics vertex transformation and lighting models is assumed. You do not need to know either OpenGL or Direct3D though familiarity with either programming interface is very helpful. All the Cg examples described work with either OpenGL or Direct3D unless otherwise noted.

    Book Structure

    After the first chapter that introduces Cg, each following chapter is a short tutorial that introduces various Cg concepts and techniques. The tutorials build upon each other and we mean for you to read them in order.

  • Chapter 1 introduces Cg and further explains the necessary background relating to real-time programmable graphics hardware.
  • Chapter 2 presents the simplest Cg shaders.
  • Chapter 3 explains parameters, textures, and expressions.
  • Chapter 4 explains how to transform vertices.
  • Chapter 5 explains how to implement lighting models with Cg.
  • Chapter 6 explains how to animate and morph models with Cg vertex programs.
  • Chapter 7 explains environment mapping with Cg.
  • Chapter 8 explains how to implement bump mapping.
  • Chapter 9 combines Cg key-frame animation with bump mapping for animated models the way a game might.
  • Chapter 10 discusses a number of advanced topics: fog, cartoon shading, projected spotlights, shadow mapping, and compositing.
  • Chapter 11 explains how the Cg compiler translates your Cg programs into a form that a programmable GPU can execute.
  • This book gets you started but does not contain everything you will eventually want to know about Cg. This tutorial complements other documentation such as the Cg Toolkit User's Manual: a Developer's Guide to Programmable Graphics included with the Cg Toolkit. Please consult the users manual and other Cg documentation for further information.



    0321194969P01032003

    Index

    Click below to download the Index file related to this title:
    Index

    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.

    Overview


    Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

    This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

    Collection and Use of Information


    To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

    Questions and Inquiries

    For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

    Online Store

    For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

    Surveys

    Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

    Contests and Drawings

    Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

    Newsletters

    If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

    Service Announcements

    On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

    Customer Service

    We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

    Other Collection and Use of Information


    Application and System Logs

    Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

    Web Analytics

    Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

    Cookies and Related Technologies

    This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

    Do Not Track

    This site currently does not respond to Do Not Track signals.

    Security


    Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

    Children


    This site is not directed to children under the age of 13.

    Marketing


    Pearson may send or direct marketing communications to users, provided that

    • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
    • Such marketing is consistent with applicable law and Pearson's legal obligations.
    • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
    • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

    Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

    Correcting/Updating Personal Information


    If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

    Choice/Opt-out


    Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

    Sale of Personal Information


    Pearson does not rent or sell personal information in exchange for any payment of money.

    While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

    Supplemental Privacy Statement for California Residents


    California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

    Sharing and Disclosure


    Pearson may disclose personal information, as follows:

    • As required by law.
    • With the consent of the individual (or their parent, if the individual is a minor)
    • In response to a subpoena, court order or legal process, to the extent permitted or required by law
    • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
    • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
    • To investigate or address actual or suspected fraud or other illegal activities
    • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
    • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
    • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

    Links


    This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

    Requests and Contact


    Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

    Changes to this Privacy Notice


    We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

    Last Update: November 17, 2020