OpenGL Shading Language

OpenGL® Shading Language, Third Edition, extensively updated for OpenGL 3.1, is the experienced application programmer’s guide to writing shaders. Part reference, part tutorial, this book thoroughly explains the shift from fixed-functionality graphics hardware to the new era of programmable graphics hardware and the additions to the OpenGL API that support this programmability. With OpenGL and shaders written in the OpenGL Shading Language, applications can perform better, achieving stunning graphics effects by using the capabilities of both the visual processing unit and the central processing unit.

 

In this book, you will find a detailed introduction to the OpenGL Shading Language (GLSL) and the new OpenGL function calls that support it. The text begins by describing the syntax and semantics of this high-level programming language. Once this foundation has been established, the book explores the creation and manipulation of shaders using new OpenGL function calls.

 

OpenGL® Shading Language, Third Edition, includes updated descriptions for the language and all the GLSL entry points added though OpenGL 3.1, as well as updated chapters that discuss transformations, lighting, shadows, and surface characteristics. The third edition also features shaders that have been updated to OpenGL Shading Language Version 1.40 and their underlying algorithms, including

 

  • Traditional OpenGL fixed functionality
  • Stored textures and procedural textures
  • Image-based lighting
  • Lighting with spherical harmonics
  • Ambient occlusion and shadow mapping
  • Volume shadows using deferred lighting
  • Ward’s BRDF model

 

The color plate section illustrates the power and sophistication of the OpenGL Shading Language. The API Function Reference at the end of the book is an excellent guide to the

API entry points that support the OpenGL Shading Language.

1100834691
OpenGL Shading Language

OpenGL® Shading Language, Third Edition, extensively updated for OpenGL 3.1, is the experienced application programmer’s guide to writing shaders. Part reference, part tutorial, this book thoroughly explains the shift from fixed-functionality graphics hardware to the new era of programmable graphics hardware and the additions to the OpenGL API that support this programmability. With OpenGL and shaders written in the OpenGL Shading Language, applications can perform better, achieving stunning graphics effects by using the capabilities of both the visual processing unit and the central processing unit.

 

In this book, you will find a detailed introduction to the OpenGL Shading Language (GLSL) and the new OpenGL function calls that support it. The text begins by describing the syntax and semantics of this high-level programming language. Once this foundation has been established, the book explores the creation and manipulation of shaders using new OpenGL function calls.

 

OpenGL® Shading Language, Third Edition, includes updated descriptions for the language and all the GLSL entry points added though OpenGL 3.1, as well as updated chapters that discuss transformations, lighting, shadows, and surface characteristics. The third edition also features shaders that have been updated to OpenGL Shading Language Version 1.40 and their underlying algorithms, including

 

  • Traditional OpenGL fixed functionality
  • Stored textures and procedural textures
  • Image-based lighting
  • Lighting with spherical harmonics
  • Ambient occlusion and shadow mapping
  • Volume shadows using deferred lighting
  • Ward’s BRDF model

 

The color plate section illustrates the power and sophistication of the OpenGL Shading Language. The API Function Reference at the end of the book is an excellent guide to the

API entry points that support the OpenGL Shading Language.

57.99 In Stock

eBook

$57.99 

Available on Compatible NOOK devices, the free NOOK App and in My Digital Library.
WANT A NOOK?  Explore Now

Related collections and offers


Overview

OpenGL® Shading Language, Third Edition, extensively updated for OpenGL 3.1, is the experienced application programmer’s guide to writing shaders. Part reference, part tutorial, this book thoroughly explains the shift from fixed-functionality graphics hardware to the new era of programmable graphics hardware and the additions to the OpenGL API that support this programmability. With OpenGL and shaders written in the OpenGL Shading Language, applications can perform better, achieving stunning graphics effects by using the capabilities of both the visual processing unit and the central processing unit.

 

In this book, you will find a detailed introduction to the OpenGL Shading Language (GLSL) and the new OpenGL function calls that support it. The text begins by describing the syntax and semantics of this high-level programming language. Once this foundation has been established, the book explores the creation and manipulation of shaders using new OpenGL function calls.

 

OpenGL® Shading Language, Third Edition, includes updated descriptions for the language and all the GLSL entry points added though OpenGL 3.1, as well as updated chapters that discuss transformations, lighting, shadows, and surface characteristics. The third edition also features shaders that have been updated to OpenGL Shading Language Version 1.40 and their underlying algorithms, including

 

  • Traditional OpenGL fixed functionality
  • Stored textures and procedural textures
  • Image-based lighting
  • Lighting with spherical harmonics
  • Ambient occlusion and shadow mapping
  • Volume shadows using deferred lighting
  • Ward’s BRDF model

 

The color plate section illustrates the power and sophistication of the OpenGL Shading Language. The API Function Reference at the end of the book is an excellent guide to the

API entry points that support the OpenGL Shading Language.


Product Details

ISBN-13: 9780321669223
Publisher: Pearson Education
Publication date: 07/13/2009
Sold by: Barnes & Noble
Format: eBook
Pages: 792
File size: 21 MB
Note: This product may take a few minutes to download.
Age Range: 18 Years

About the Author

Randi J. Rost was a core contributor to the development of the OpenGL Shading Language and the OpenGL API that supports it, as well as one of the first programmers to design and implement shaders using this technology. Randi works at Intel.

 

Bill Licea-Kane is chair of the ARB OpenGL Shading Language workgroup. Bill is a principal member of technical staff at AMD.

Table of Contents

Foreword to the Second Edition xxi

Foreword to the First Edition xxv

Preface xxix

About the Authors xxxv

About the Contributors xxxvii

Acknowledgments xxxix

 

Chapter 1: Review of OpenGL Basics 1

1.1 OpenGL History 1

1.2 OpenGL Evolution 4

1.3 Execution Model 5

1.4 The Framebuffer 6

1.5 State 9

1.6 Processing Pipeline 9

1.7 Drawing Geometry 11

1.8 Drawing Images 19

1.9 Coordinate Transforms 22

1.10 Texturing 27

1.11 Summary 33

1.12 Further Information 33

 

Chapter 2: Basics 35

2.1 Introduction to the OpenGL Shading Language 35

2.2 Why Write Shaders? 37

2.3 OpenGL Programmable Processors 38

2.4 Language Overview 47

2.5 System Overview 54

2.6 Key Benefits 59

2.7 Summary 61

2.8 Further Information 63

 

Chapter 3: Language Definition 65

3.1 Example Shader Pair 65

3.2 Data Types 67

3.3 Initializers and Constructors 76

3.4 Type Conversions 78

3.5 Qualifiers and Interface to a Shader 79

3.6 Flow Control 84

3.7 Operations 88

3.8 Preprocessor 93

3.9 Preprocessor Expressions 96

3.10 Error Handling 97

3.11 Summary 98

3.12 Further Information 98

 

Chapter 4: The OpenGL Programmable Pipeline 101

4.1 The Vertex Processor 102

4.2 The Fragment Processor 106

4.3 Built-in Uniform Variables 110

4.4 Built-in Constants 110

4.5 Interaction with OpenGL Fixed Functionality 111

4.6 Summary 115

4.7 Further Information 115

 

Chapter 5: Built-in Functions 117

5.1 Angle and Trigonometry Functions 118

5.2 Exponential Functions 121

5.3 Common Functions 122

5.4 Geometric Functions 134

5.5 Matrix Functions 136

5.6 Vector Relational Functions 138

5.7 Texture Access Functions 140

5.8 Fragment Processing Functions 176

5.9 Noise Functions 177

5.10 Summary 178

5.11 Further Information 178

 

Chapter 6: Simple Shading Example 181

6.1 Brick Shader Overview 182

6.2 Vertex Shader 183

6.3 Fragment Shader 189

6.4 Observations 196

6.5 Summary 197

6.6 Further Information 197

 

Chapter 7: OpenGL Shading Language API 199

7.1 Obtaining Version Information 200

7.2 Creating Shader Objects 203

7.3 Compiling Shader Objects 204

7.4 Linking and Using Shaders 205

7.5 Cleaning Up 210

7.6 Query Functions 211

7.7 Specifying Vertex Attributes 217

7.8 Specifying Uniform Variables 226

7.9 Samplers 238

7.10 Multiple Render Targets 239

7.11 Development Aids 240

7.12 Implementation-Dependent API Values 241

7.13 Application Code for Brick Shaders 242

7.14 Summary 247

7.15 Further Information 248

 

Chapter 8: Shader Development 251

8.1 General Principles 251

8.2 Performance Considerations 254

8.3 Shader Debugging 256

8.4 Shader Development Tools 258

8.5 Scene Graphs 263

8.6 Summary 266

8.7 Further Information 266

 

Chapter 9: Emulating OpenGL Fixed Functionality 269

9.1 Transformation 270

9.2 Light Sources 273

9.3 Material Properties and Lighting 277

9.4 Two-Sided Lighting 279

9.5 No Lighting 280

9.6 Fog 281

9.7 Texture Coordinate Generation 283

9.8 User Clipping 286

9.9 Texture Application 286

9.10 Matrices 288

9.11 Operating on the Current Matrices 291

9.12 Summary 294

9.13 Further Information 294

 

Chapter 10: Stored Texture Shaders 297

10.1 Access to Texture Maps from a Shader 298

10.2 Simple Texturing Example 300

10.3 Multitexturing Example 303

10.4 Cube Mapping Example 309

10.5 Another Environment Mapping Example 312

10.6 Glyph Bombing 316

10.7 Summary 326

10.8 Further Information 326

 

Chapter 11: Procedural Texture Shaders 329

11.1 Regular Patterns 331

11.2 Toy Ball 336

11.3 Lattice 344

11.4 Bump Mapping 345

11.5 Summary 354

11.6 Further Information 354

 

Chapter 12: Lighting 357

12.1 Hemisphere Lighting 357

12.2 Image-Based Lighting 361

12.3 Lighting with Spherical Harmonics 365

12.4 The Überlight Shader 369

12.5 Summary 376

12.6 Further Information 376

 

Chapter 13: Shadows 379

13.1 Ambient Occlusion 380

13.2 Shadow Maps 385

13.3 Deferred Shading for Volume Shadows 392

13.4 Summary 400

13.5 Further Information 400

 

Chapter 14: Surface Characteristics 403

14.1 Refraction 404

14.2 Diffraction 410

14.3 BRDF Models 415

14.4 Polynomial Texture Mapping with BRDF Data 422

14.5 Summary 431

14.6 Further Information 432

 

Chapter 15: Noise 435

15.1 Noise Defined 436

15.2 Noise Textures 444

15.3 Trade-offs 447

15.4 A Simple Noise Shader 448

15.5 Turbulence 451

15.6 Granite 453

15.7 Wood 454

15.8 Summary 457

15.9 Further Information 458

 

Chapter 16: Animation 461

16.1 On/Off 462

16.2 Threshold 463

16.3 Translation 463

16.4 Morphing 464

16.5 Other Blending Effects 467

16.6 Vertex Noise 468

16.7 Particle Systems 469

16.8 Wobble 476

16.9 Animating Once per Frame 480

16.10 Summary 483

16.11 Further Information 484

 

Chapter 17: Antialiasing Procedural Textures 487

17.1 Sources of Aliasing 487

17.2 Avoiding Aliasing 489

17.3 Increasing Resolution 490

17.4 Antialiased Stripe Example 491

17.5 Frequency Clamping 502

17.6 Summary 504

17.7 Further Information 504

 

Chapter 18: Non-photorealistic Shaders 507

18.1 Hatching Example 508

18.2 Technical Illustration Example 516

18.3 Mandelbrot Example 521

18.4 Summary 529

18.5 Further Information 530

 

Chapter 19: Shaders for Imaging 533

19.1 Geometric Image Transforms 534

19.2 Mathematical Mappings 534

19.3 Lookup Table Operations 535

19.4 Color Space Conversions 536

19.5 Image Interpolation and Extrapolation 537

19.6 Blend Modes 540

19.7 Convolution 546

19.8 Summary 555

19.9 Further Information 555

 

Chapter 20: Language Comparison 559

20.1 Chronology of Shading Languages 559

20.2 RenderMan 560

20.3 OpenGL Shader (ISL) 563

20.4 HLSL 565

20.5 Cg 568

20.6 Summary 570

20.7 Further Information 570

 

Appendix A: Language Grammar 573

 

Appendix B: API Function Reference 589

Implementation-Dependent API Values for GLSL 590

Other Queriable Values for GLSL 591

glAttachShader 592

glBindAttribLocation 594

glCompileShader 597

glCreateProgram 599

glCreateShader 601

glDeleteProgram 603

glDeleteShader 605

glDetachShader 607

glDrawBuffers 609

glEnableVertexAttribArray 612

glGetActiveAttrib 614

glGetActiveUniform 617

glGetAttachedShaders 621

glGetAttribLocation 623

glGetProgram 625

glGetProgramInfoLog 628

glGetShader 630

glGetShaderInfoLog 632

glGetShaderSource 634

glGetUniform 636

glGetUniformLocation 638

glGetVertexAttrib 640

glGetVertexAttribPointer 643

glIsProgram 645

glIsShader 647

glLinkProgram 648

glShaderSource 652

glUniform 654

glUseProgram 661

glValidateProgram 665

glVertexAttrib 667

glVertexAttribPointer 673

OpenGL 1.5 to OpenGL 2.0 GLSL Migration Guide 676

 

Afterword 681

Glossary 685

Further Reading 705

Index 721

Introduction

For just about as long as there has been graphics hardware, there has been programmable graphics hardware. Over the years, building flexibility into graphics hardware designs has been a necessary way of life for hardware developers. Graphics APIs continue to evolve, and since a hardware design can take two years or more from start to finish, the only way to guarantee a hardware product that can support the then-current graphics APIs at its release is to build in some degree of programmability from the very beginning.

Until recently, the realm of programming graphics hardware belonged to just a few people, mainly researchers and graphics hardware driver developers. Research into programmable graphics hardware has been taking place for many years, but the point of this research has not been to produce viable hardware and software for application developers and end users. The graphics hardware driver developers have focused on the immediate task of providing support for the important graphics APIs of the time: PHIGS, PEX, Iris GL, OpenGL, Direct3D, and so on. Until recently, none of these APIs exposed the programmability of the underlying hardware, so application developers have been forced into using the fixed functionality provided by a traditional graphics APIs.

Hardware companies have not exposed the programmable underpinnings of their products because there is a high cost of educating and supporting customers to use low-level, device-specific interfaces and because these interfaces typically change quite radically with each new generation of graphics hardware. Application developers who use such a device-specific interface to a piece of graphics hardware face the daunting taskof updating their software for each new generation of hardware that comes along. And forget about supporting the application on hardware from multiple vendors!

As we move into the 21st century, some of these fundamental tenets about graphics hardware are being challenged. Application developers are pushing the envelope as never before, and demanding a variety of new features in hardware in order to create more and more sophisticated on-screen effects. As a result, new graphics hardware designs are more programmable than ever before. Standard graphics APIs have been challenged to keep up with the pace of hardware innovation. For OpenGL, the result has been a spate of extensions to the core API as hardware vendors struggle to support a range of interesting new features that their customers are demanding.

So we are standing today at a crossroads for the graphics industry. A paradigm shift is occurring that is taking us from the world of rigid, fixed-functionality graphics hardware and graphics APIs to a brave new world where the visual processing unit, or VPU (i.e., graphics hardware) is as important as the central processing unit, or CPU. The VPU will be optimized for processing dynamic media such as 3D graphics and video. Highly parallel processing of floating point data will be the primary task for VPUs, and the flexibility of the VPU will mean that it can also be used to process data other than a stream of traditional graphics commands. Applications can take advantage of the capabilities of both the CPU and the VPU, utilizing the strengths of each to optimally perform the task at hand.

This book describes how graphics hardware programmability is exposed through a high-level language in the leading cross-platform 3D graphics API: OpenGL. This language, the OpenGL Shading Language, allows applications to take total control over the most important stages of the graphics processing pipeline. No longer restricted to the graphics rendering algorithms and formulas chosen by hardware designers and frozen in silicon, software developers are beginning to use this programmability to create stunning effects in real-time.

Intended Audience

The primary audience for this book is application programmers that are interested in writing shaders. Primarily, this book is intended to be used as both a tutorial and a reference book by people interested in learning to write shaders with the OpenGL Shading Language. Some will use the book in one fashion and some in the other. It is hoped that the organization will be amenable to both uses. It is not expected that most people will read the book in sequential order from back to front.

Readers do not need previous knowledge of OpenGL in order to absorb the material in this book, but it is very helpful. A brief review of OpenGL is included, but this book does not attempt to be a tutorial or reference book for OpenGL. Anyone attempting to develop an OpenGL application that uses shaders should be armed with OpenGL programming documentation in addition to this book.

Computer graphics has a mathematical basis, therefore some knowledge of algebra and trigonometry will help readers understand and appreciate some of the details presented. With the advent of programmable graphics hardware, key parts of the graphics processing pipeline are once again under the control of software developers. In order to successfully develop shaders in this environment, it is imperative that developers understand the mathematical basis of computer graphics.

About This Book

This book has three main parts. Chapter 1 through Chapter 8 are aimed at teaching the reader about the OpenGL Shading Language and how to use it. This part of the book covers details of the language and details of the OpenGL commands that are used to create and manipulate shaders. In order to provide the reader with a basis for writing shaders, Chapter 9 through Chapter 16 contain a gallery of shader examples and some explanation of the underlying algorithms. This part of the book is intended to be used as a basis for the reader's shader development, and as a springboard to inspire new ideas. Finally, Chapter 17 contains a comparison with other notable commercial shading languages, and Appendices A and B contain reference material for the language and the API entry points that support it.

The chapters are arranged to suit the needs of the reader that is least familiar with OpenGL and shading languages. Certain chapters can be skipped by readers that are more familiar with both topics. People don't necessarily read technical books in order from front to back, and this book is designed to have somewhat compartmentalized chapters in order to allow such usage.

  • Chapter 1 contains a review of the fundamentals of the OpenGL API. Readers already familiar with OpenGL may skip ahead to Chapter 2.
  • Chapter 2 provides an introduction to the OpenGL Shading Language and the OpenGL entry points that have been added to support it. If you want to know what the OpenGL Shading Language is all about and you only have time to read one chapter of this book, this is the one to read.
  • Chapter 3 thoroughly describes the OpenGL Shading Language. This material is organized to present the details of a programming language. This section will be useful as a reference section once readers have developed a general understanding of the language.
  • Chapter 4 discusses how the newly defined programmable parts of the rendering pipeline interact with each other and with OpenGL's fixed functionality. This discussion includes descriptions of the built-in variables defined in the OpenGL Shading Language.
  • Chapter 5 describes the built-in functions that are part of the OpenGL Shading Language. This section will also be useful as a reference section once readers have developed an understanding of the language.
  • Chapter 6 presents and discusses a fairly simple shader example. People that learn best by diving in and studying a real example will benefit from the discussion in this chapter.
  • Chapter 7 describes the entry points that have been added to OpenGL to support the creation and manipulation of shaders. This material will need to be understood by application programmers that want to use shaders in their application.
  • Chapter 8 presents some general advice on shader development and describes the shader development process. It also describes tools that are currently available to aid the shader development process.
  • Chapter 9 begins a series of chapters that present and discuss shaders with a common characteristic. In this chapter, shaders that duplicate some of the fixed functionality of the OpenGL pipeline are presented.
  • Chapter 10 presents a few shaders that are based on the ability to store data in and texture maps.
  • Chapter 11 is devoted to shaders that are procedural in nature (effects are computed algorithmically rather than being based on information stored in textures)
  • Chapter 12 describes noise and the effects that can be achieved by using it properly.
  • Chapter 13 contains examples of how shaders can be used to create rendering effects that vary over time.
  • Chapter 14 contains a discussion of the aliasing problem and how shaders can be written to reduce the effects of aliasing
  • Chapter 15 illustrates shaders that are used to achieve effects other than photorealism. Such effects include technical illustration, sketching or hatching effects, and other stylized rendering.
  • Chapter 16 presents several shaders that are used to modify images as they are being drawn with OpenGL.
  • Chapter 17 compares the OpenGL Shading Language with other notable commercial shading languages.
  • Appendix A contains the language grammar that more clearly specifies the OpenGL Shading Language.
  • Appendix B contains reference pages for the API entry points that are related to the OpenGL Shading Language.
  • About the Shader Examples

    The shaders contained in this book are primarily short programs designed to illustrate the capabilities of the OpenGL Shading Language. None of the example shaders should be presumed to illustrate the "best" way of achieving a particular effect. (Indeed, the "best" way to implement certain effects may have yet to be discovered through the power and flexibility of programmable graphics hardware.) Performance improvements for each shader are possible for any gi image quality may be improved by taking greater care to reduce or eliminate causes of aliasing.

    The source code for these shaders is written in a way that I believe represents a reasonable trade-off between source code clarity, portability, and performance. Use them to learn the OpenGL Shading Language, and improve upon them for use in your own projects.

    With the exception of the images produced for the toy ball shader (which were produced by ATI Research, Inc.on ATI hardware, all of the images produced for this book were done on the first graphics accelerator to provide support for the OpenGL Shading Language, the 3Dlabs® Wildcat® VP. This implementation has a variety of limitations, so in a number of cases the image was generated with a shader that could run on this hardware, but contained hardware or driver-dependent idiosyncracies. A cleaned up version of such shaders is then presented and discussed in this book. I have taken as much care as possible to present shaders that are done "the right way" for the OpenGL Shading Language rather than those with idiosyncracies due to being developed on the very first implementation. And I have tried to be as careful as I can during the translation to cleaned up versions of the shaders. If it becomes necessary to post corrected versions of any of these shaders, they will be available through a link at this book's web site.

    The development of this book occurred while OpenGL Shading Language implementations were still very much in their infancy. In choosing shader examples to include and discuss, my goal was to provide working shaders, not shaders that should work once the implementations became capable of supporting the whole breadth of the OpenGL Shading Language specification. Longer, more complex shader examples are prime candidates for inclusion in the second edition of this book, as are shaders that utilize features that are not yet available in any implementation.

    0321197895P10082003

    From the B&N Reads Blog

    Customer Reviews