OpenGL Programming Guide by Dave Shreiner at Bookstore UAE
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Home > Computing and Information Technology > Graphical and digital media applications > OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1
OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1

OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

Please note that this title's color insert (referred to as "Plates" within the text) is not available for this digital product.   OpenGL is a powerful software interface used to produce high-quality, computer-generated images and interactive applications using 2D and 3D objects, bitmaps, and color images.   The OpenGL® Programming Guide, Seventh Edition, provides definitive and comprehensive information on OpenGL and the OpenGL Utility Library. The previous edition covered OpenGL through Version 2.1. This seventh edition of the best-selling “red book” describes the latest features of OpenGL Versions 3.0 and 3.1. You will find clear explanations of OpenGL functionality and many basic computer graphics techniques, such as building and rendering 3D models; interactively viewing objects from different perspective points; and using shading, lighting, and texturing effects for greater realism. In addition, this book provides in-depth coverage of advanced techniques, including texture mapping, antialiasing, fog and atmospheric effects, NURBS, image processing, and more. The text also explores other key topics such as enhancing performance, OpenGL extensions, and cross-platform techniques.   This seventh edition has been updated to include the newest features of OpenGL Versions 3.0 and 3.1, including   Using framebuffer objects for off-screen rendering and texture updates Examples of the various new buffer object types, including uniform-buffer objects, transform feedback buffers, and vertex array objects Using texture arrays to increase performance when using numerous textures Efficient rendering using primitive restart and conditional rendering Discussion of OpenGL’s deprecation mechanism and how to verify your programs for future versions of OpenGL   This edition continues the discussion of the OpenGL Shading Language (GLSL) and explains the mechanics of using this language to create complex graphics effects and boost the computational power of OpenGL. 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 Khronos OpenGL ARB Working Group, an industry consortium responsible for guiding the evolution of OpenGL and related technologies.

Table of Contents:
Figures xxi

Tables xxv

Examples xxix

About This Guide xxxv

Acknowledgments xlv

 

Chapter 1: Introduction to OpenGL 1

What Is OpenGL? 2

A Smidgen of OpenGL Code 5

OpenGL Command Syntax 7

OpenGL as a State Machine 9

OpenGL Rendering Pipeline 10

OpenGL-Related Libraries 14

Animation 22

OpenGL and Its Deprecation Mechanism 27

 

Chapter 2: State Management and Drawing Geometric Objects 31

A Drawing Survival Kit 34

Describing Points, Lines, and Polygons 42

Basic State Management 53

Displaying Points, Lines, and Polygons 55

Normal Vectors 68

Vertex Arrays 70

Buffer Objects 91

Vertex-Array Objects 104

Attribute Groups 110

Some Hints for Building Polygonal Models of Surfaces 113

 

Chapter 3: Viewing 123

Overview: The Camera Analogy 126

Viewing and Modeling Transformations 137

Projection Transformations 152

Viewport Transformation 158

Troubleshooting Transformations 162

Manipulating the Matrix Stacks 164

Additional Clipping Planes 168

Examples of Composing Several Transformations 172

Reversing or Mimicking Transformations 179

 

Chapter 4: Color 185

Color Perception 186

Computer Color 188

RGBA versus Color-Index Mode 190

Specifying a Color and a Shading Model 196

 

Chapter 5: Lighting 203

A Hidden-Surface Removal Survival Kit 205

Real-World and OpenGL Lighting 207

A Simple Example: Rendering a Lit Sphere 210

Creating Light Sources 214

Selecting a Lighting Model 227

Defining Material Properties 231

The Mathematics of Lighting 240

Lighting in Color-Index Mode 246

 

Chapter 6: Blending, Antialiasing, Fog, and Polygon Offset 249

Blending 251

Antialiasing 267

Fog 280

Point Parameters 291

Polygon Offset 293

 

Chapter 7: Display Lists 297

Why Use Display Lists? 298

An Example of Using a Display List 299

Display List Design Philosophy 302

Creating and Executing a Display List 305

Executing Multiple Display Lists 312

Managing State Variables with Display Lists 318

 

Chapter 8: Drawing Pixels, Bitmaps, Fonts, and Images 321

Bitmaps and Fonts 323

Images 333

Imaging Pipeline 343

Reading and Drawing Pixel Rectangles 359

Using Buffer Objects with Pixel Rectangle Data 362

Tips for Improving Pixel Drawing Rates 366

Imaging Subset 367

 

Chapter 9: Texture Mapping 389

An Overview and an Example 395

Specifying the Texture 400

Filtering 434

Texture Objects 437

Texture Functions 444

Assigning Texture Coordinates 448

Automatic Texture-Coordinate Generation 457

Multitexturing 467

Texture Combiner Functions 472

Applying Secondary Color after Texturing 478

Point Sprites 479

The Texture Matrix Stack 481

Depth Textures 483

 

Chapter 10: The Framebuffer 489

Buffers and Their Uses 492

Testing and Operating on Fragments 501

The Accumulation Buffer 518

Framebuffer Objects 526

 

Chapter 11: Tessellators and Quadrics 541

Polygon Tessellation 542

Quadrics: Rendering Spheres, Cylinders, and Disks 559

 

Chapter 12: Evaluators and NURBS 569

Prerequisites 571

Evaluators 572

The GLU NURBS Interface 586

 

Chapter 13: Selection and Feedback 605

Selection 606

Feedback 627

 

Chapter 14: Now That You Know 635

Error Handling 637

Which Version Am I Using? 639

Extensions to the Standard 641

Cheesy Translucency 644

An Easy Fade Effect 645

Object Selection Using the Back Buffer 646

Cheap Image Transformation 647

Displaying Layers 649

Antialiased Characters 650

Drawing Round Points 653

Interpolating Images 653

Making Decals 653

Drawing Filled, Concave Polygons Using the Stencil Buffer 655

Finding Interference Regions 656

Shadows 658

Hidden-Line Removal 659

Texture Mapping Applications 661

Drawing Depth-Buffered Images 662

Dirichlet Domains 662

Life in the Stencil Buffer 664

Alternative Uses for glDrawPixels() and glCopyPixels() 665

 

Chapter 15: The OpenGL Shading Language 667

The OpenGL Graphics Pipeline and Programmable Shading 668

Using GLSL Shaders 672

The OpenGL Shading Language 681

Creating Shaders with GLSL 681

Uniform Blocks 692

Accessing Texture Maps in Shaders 707

Shader Preprocessor 711

Extension Processing in Shaders 714

Vertex Shader Specifics 715

Transform Feedback 722

Fragment Shader Specifics 727

 

Appendix A: Basics of GLUT: The OpenGL Utility Toolkit 731

Initializing and Creating a Window 732

Handling Window and Input Events 733

Loading the Color Map 735

Initializing and Drawing Three-Dimensional Objects 735

Managing a Background Process 736

Running the Program 737

 

Appendix B: State Variables 739

The Query Commands 740

OpenGL State Variables 743

 

Appendix C: Homogeneous Coordinates and Transformation Matrices 803

Homogeneous Coordinates 804

Transformation Matrices 805

 

Appendix D: OpenGL and Window Systems 809

Accessing New OpenGL Functions 810

GLX: OpenGL Extension for the X Window System 812

AGL: OpenGL Extensions for the Apple Macintosh 819

WGL: OpenGL Extension for Microsoft Windows 95/98/NT/ME/2000/XP 824

 

Glossary 831

Index 857

 

The following appendices are available online at http://www.opengl-redbook.com/appendices/.

 

Appendix E: Order of Operations

Appendix F: Programming Tips

Appendix G: OpenGL Invariance

Appendix H: Calculating Normal Vectors

Appendix I: Built-In OpenGL Shading Language Variables and Functions

Appendix J: Floating-Point Formats for Textures, Framebuffers, and Renderbuffers

Appendix K: RGTC Compressed Texture Format

Appendix L: std140 Uniform Buffer Layout



About the Author :

Dave Shreiner, director of graphics technology at ARM, Inc., was a longtime member of the core OpenGL team at SGI. He authored the first commercial OpenGL training course and has been developing computer graphics applications for more than two decades. Dave regularly presents at SIGGRAPH and other conferences worldwide. He is coauthor of the OpenGL ES 2.0 Programming Guide (Addison-Wesley, 2009) and the OpenGL® Reference Manual (Addison-Wesley, 2004), and is series editor for Addison-Wesley’s OpenGL Series.


Best Sellers


Product Details
  • ISBN-13: 9780321669254
  • Publisher: Addison-Wesley Professional
  • Publisher Imprint: Addison-Wesley Professional
  • Language: English
  • Sub Title: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1
  • ISBN-10: 0321669258
  • Publisher Date: 27 Apr 2021
  • Binding: Digital download
  • No of Pages: 1018


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1
Addison-Wesley Professional -
OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

OpenGL Programming Guide: The Official Guide to Learning OpenGL, Versions 3.0 and 3.1

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    Hello, User