Fixed Function to Shaders
Porting a fixed-function application to “modern”
Opengl.
Watch the video here: http://bit.ly/1TA24fU
Outline
There are many tutorials that introduce you to
“modern” OpenGL: (OpenGL 3.3/OpenGL ES
2.0 or greater which is where the fixed-function
APIs were removed from the spec.)
Here we will compare and contrast old fixed-
functionality and it’s new modern replacement.
We will cover some basic things you need to get
going: Vertex/Attribute data, rendering, and 3-
D math.
Geometry
Let’s use the famous OpenGL triangle as a
platform to talk about geometry/attributes.
It’s the probably the very first OpenGL program
you saw when learning OpenGL.
Rendering
What is the minimum need to “light up” a pixel?
First you need a window on your platform with
an OpenGL context bound to it.
You used to use GLUT and GLU “helper”
libraries
Here we use Qt to replace both.
For window/platform integration we’re using
QOpenGLWindow
initializeGL(), resizeGL(),
paintGL(), keyPressEvent()
GLUT OpenGL Triangle (clip-space)
Show code in Qt Creator.
OpenGL 1.1 Vertex Arrays GLUT Triangle
Show code in Qt Creator.
Modern Open Vertex Arrays Qt Triangle
Show code in Qt Creator.
Doesn’t Work ??
Previous slide will not render a triangle.
Why not?
Fixed-function example uses “fixed functionality”
to render.
With modern OpenGL, you have to program that
functionality yourself in the form of “shaders”.
Shaders
Many kinds of shaders in Modern OpenGL:
Vertex Shader
Tessellation Control Shader
Tessellation Evaluation Shader
Geometry Shader
Fragment Shader
Compute Shader
Only two are required.
Vertex Shader
Program that runs on the GPU.
Invoked once for each vertex in primitive shapes
drawn.
Input: Attribute data from vertex arrays
Output:
Clip space position of vertex: gl_Position
Data to pixel shader: varying variables.
Fragment Shader
Program run on the GPU once for each
fragment (pixel-candidate) displayed on
screen.
Inputs: varying variables from Vertex Shader
Outputs: pixel color: gl_FragColor
Pixels are produced by “Rasterization”
Rasterization
http://www.raywenderlich.com
Program
All the shaders are compiled and linked together
similar to C++ program.
QOpenGLShaderProgram makes it easy
Once compiled and linked bind() must be called
to make it active.
Hold On ...
You may notice the fragment shader is
assigning the output color directly from it’s
input varying v_color variable set by the
Vertex Shader.
How is it that the colors are “mixed” inside the
triangle?
Outputs of the vertex shader (and
corresponding inputs to the pixel shader) are
interpolated between the vertices.
Equivalent to glShadeModel(GL_SMOOTH);
What about GL_FLAT ?
Okay so attribute data output from the vertex
shader is interpolated to the pixel shader
inputs.
What about glShadeModel(GL_FLAT)?
Use flat attribute on variable declaration in
shader code.
flat varying vec3 v_color;
Default is smooth. These are equivalent:
smooth varying vec3 v_color;
varying vec3 v_color;
Review: QGLBufferObject
Memory buffer on graphics card that holds
vertex attribute data.
Equivalent to glBegin/glEnd inside a display
list
Attributes inside glBegin/glEnd copied to
video card instead of being rendered.
Equivalent to alloc() on QGLBufferObject.
Vertex Buffer Objects (VBO) don’t save primitive
type.
Instead pass as parameter to glDraw()
Just like OpenGL 1.1 Vertex Arrays
Review: QGLVertexArrayObject
OpenGL 1.1 Vertex Arrays require setting up
attribute array specifications each time before
calling glDraw().
Modern OpenGL captures attribute array
specifications once when data is uploaded to
card using Vertex Array Objects (VAO).
VAO “remembers” vertex array state and
applies this state when .bind() is called.
Modern code only needs a vao.bind() before
glDraw()
Another thing to note …
Fixed-function primitive types: GL_QUAD,
GL_QUAD_STRIP, GL_POLYGON have been
removed.
You must change your geometry to
GL_TRIANGLE_STRIP,
GL_TRIANGLE_FAN, or GL_TRIANGLE.
Math
Fixed-function OpenGL had Matrix Stacks built
into the API.
Used to create concept of a “camera”
(GL_MODELVIEW) rendering a world through a
window (GL_PROJECTION) that’s painted on
your computer screen.
Convenience Functions: glLoadIdentity,
glTranslate, glRotate, glScale
Matrix stack: glMatrixMode,
glPushMatrix, glPopmatrix
Sorry...
Sorry, that’s all gone now.
You, the programmer, have to perform all this math.
Recall the vertex shader is responsible for outputting
the vertices clip-space position by assigning to
gl_Position.
It is this math that you use in the vertex shader to
perform this conversion.
On the CPU the typical thing to do is recreate the
camera/window idiom with model transform
matrices, a view transform matrix, and a projection
matrix.
Pass the matrices to the shaders as “uniforms”
Agnostic
Modern OpenGL is agnostic about these idioms.
But it does help you by providing matrix math
operators in the shader language.
You, the programmer, get to decide how to
transform your vertex positions to clip space.
If you can code it, you can use it.
Math Library
If you want to use the Model-View-Projection
concept in your program you have to perform
the math yourself.
Qt has a powerful/concise library built-in which
supports vectors, matrices, and quaternions.
Matrix functions to replace GL & GLU
gluPerspective, gluOrtho2D, glFrustum,
gluLookAt, glTranslate, glRotate, glScale,
etc.
Checkout: QVector[2,3,4]D, QQuaterion,
QMatrix4x4
Move out of Clip space (fixed-function)
Show code in Qt Creator.
Uniforms
A uniform is a OpenGL Shading Language
(GLSL) constant parameter.
Set in CPU code between glDraw() calls.
Constant in the fashion that it has a constant
value for all shader invocations originating
from glDraw() calls until the value is
changed.
Use QOpenGLProgram.setUniform() to
pass Model, View, Projection matrices to
shader code before drawing.
Move out of Clip Space (modern GL)
Show code in Qt Creator.
User Clip Planes
Another thing to note is the glClipPlane()
has been removed.
Perform point/plane equation tests in your pixel
shader and use keyword discard (instead of
assigning to gl_FragColor) to inform
OpenGL that that particular pixel should not be
displayed.
Managing OpenGL State
Another thing to note is that
glPushAttrib(), glPopAttrib(),
glPushClientAttrib() and
glPopClientAttrib() have been
removed.
You have to manually manage your OpenGL
state by either keeping track of it in your C++
program (the preferred method) or by using
glGet() to read the current state and then
restoring it afterwards.
Wrapping Up
We were able to cover transitioning from fixed-
function Vertex/Attribute data and the built-in
Matrix stacks (and associated matrix
functionality) to Modern OpenGL.
We learned that Modern OpenGL replaced the
“fixed” stuff with programmable shaders. We
learned about the Vertex and Fragment
shaders, what they do and how data flows
through them.
We learned that using Qt makes is very easy to
create cross-platform Modern OpenGL code.
For More Information
For more information checkout the four-part
blog series I wrote covering this topic.
www.ics.com/blog/fixed-function-modern-opengl-part-1-4
Also, check out our training class coming up in
April out in Silicon Valley
www.ics.com/learning/training/state-art-opengl-and-qt-3
Outline
For the Blog: Journal Entry Style
- Introduction:
Spent a lot of time in past life on porting
complex, scenegraph based, fixed function
OpenGL code to Modern Pipeline Code
...
- Three Things that spring out to be addressed
- Geometry and Lighting and Texturing
- Picking, Text is another one for another day
- Explain Geometry and Lighting using a simple
scene example
Simple Scene from <insert link here>
Screenshot
Code: window/context, geometry, drawing,
resize, camera modelview, projection, viewport,
light
Modern Code: QOpenGLWindow....
Geometry: VertexBuffer, IndexBuffer,
VertexArrayObjects, ...
GLUT OpenGL Triangle (clip-space)
void init(void) {
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
void display(void) {
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_TRIANGLES);
glColor3f(1.0, 0.0, 0.0); glVertex3f(-1.0, -1.0, 0.0);
glColor3f(0.0, 1.0, 0.0); glVertex3f( 0.0, 1.0, 0.0);
glColor3f(0.0, 0.0, 1.0); glVertex3f( 1.0, -1.0, 0.0);
glEnd();
glutSwapBuffers();
}
void reshape(int w, int h) {
glViewport(0, 0, (GLsizei) w, (GLsizei) h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
}
void keyboard (unsigned char key, int , int )
{
if (key == 27) exit(0);
}

More Related Content

PPTX
Kubernetes for Beginners: An Introductory Guide
PPTX
React Native
PDF
Javascript Module Patterns
PDF
Pune Flutter Presents - Flutter 101
PDF
Ekon20 mORMot Legacy Code Technical Debt Delphi Conference
PDF
Java Course 11: Design Patterns
PPTX
Flutter Intro
ODP
SR-IOV Introduce
Kubernetes for Beginners: An Introductory Guide
React Native
Javascript Module Patterns
Pune Flutter Presents - Flutter 101
Ekon20 mORMot Legacy Code Technical Debt Delphi Conference
Java Course 11: Design Patterns
Flutter Intro
SR-IOV Introduce

What's hot (20)

PDF
Introduction to the Qt State Machine Framework using Qt 6
 
PPTX
Discover Quarkus and GraalVM
PPTX
React JS part 1
PDF
Deploy Application on Kubernetes
PPTX
INTRODUCTION TO FLUTTER BASICS.pptx
PDF
Netty @Apple: Large Scale Deployment/Connectivity
PPTX
Containerization
PDF
Developing Cross platform apps in flutter (Android, iOS, Web)
PPTX
Qt Framework Events Signals Threads
PPTX
Introduction to ajax
PDF
What Is An SDK?
PPTX
Dart and Flutter Basics.pptx
PPTX
Android jetpack compose | Declarative UI
PDF
Terraform GitOps on Codefresh
PDF
Learn java in hindi
PPTX
Flutter
PPTX
Flutter introduction
PDF
flutter.school #HelloWorld
PPTX
Implementation &amp; Comparison Of Rdma Over Ethernet
Introduction to the Qt State Machine Framework using Qt 6
 
Discover Quarkus and GraalVM
React JS part 1
Deploy Application on Kubernetes
INTRODUCTION TO FLUTTER BASICS.pptx
Netty @Apple: Large Scale Deployment/Connectivity
Containerization
Developing Cross platform apps in flutter (Android, iOS, Web)
Qt Framework Events Signals Threads
Introduction to ajax
What Is An SDK?
Dart and Flutter Basics.pptx
Android jetpack compose | Declarative UI
Terraform GitOps on Codefresh
Learn java in hindi
Flutter
Flutter introduction
flutter.school #HelloWorld
Implementation &amp; Comparison Of Rdma Over Ethernet
Ad

Similar to OpenGL Fixed Function to Shaders - Porting a fixed function application to “modern” OpenGL - Webinar Mar 2016 (20)

PPT
openGL basics for sample program.ppt
PPT
openGL basics for sample program (1).ppt
PDF
Opengl basics
PDF
Arkanoid Game
PDF
18csl67 vtu lab manual
PDF
Android native gl
PPT
Advanced Graphics Workshop - GFX2011
PPT
Introduction to 2D/3D Graphics
PPTX
UNIT 1 OPENGL_UPDATED .pptx
PPT
CS 354 Viewing Stuff
PPT
OpenGL ES based UI Development on TI Platforms
PDF
Computer Graphics - Lecture 01 - 3D Programming I
PDF
COMPUTER GRAPHICS PROJECT REPORT
PDF
Open gl tips
PPT
Open gles
PPT
Open gl
PPTX
Opengl lec 3
PPTX
Shader Programming With Unity
PDF
Mixing Path Rendering and 3D
openGL basics for sample program.ppt
openGL basics for sample program (1).ppt
Opengl basics
Arkanoid Game
18csl67 vtu lab manual
Android native gl
Advanced Graphics Workshop - GFX2011
Introduction to 2D/3D Graphics
UNIT 1 OPENGL_UPDATED .pptx
CS 354 Viewing Stuff
OpenGL ES based UI Development on TI Platforms
Computer Graphics - Lecture 01 - 3D Programming I
COMPUTER GRAPHICS PROJECT REPORT
Open gl tips
Open gles
Open gl
Opengl lec 3
Shader Programming With Unity
Mixing Path Rendering and 3D
Ad

More from ICS (20)

PDF
Understanding the EU Cyber Resilience Act
 
PDF
Porting Qt 5 QML Modules to Qt 6 Webinar
 
PDF
Medical Device Cybersecurity Threat & Risk Scoring
 
PDF
Exploring Wayland: A Modern Display Server for the Future
 
PDF
Threat Modeling & Risk Assessment Webinar: A Step-by-Step Example
 
PDF
8 Mandatory Security Control Categories for Successful Submissions
 
PDF
Future-Proofing Embedded Device Capabilities with the Qt 6 Plugin Mechanism.pdf
 
PDF
Choosing an Embedded GUI: Comparative Analysis of UI Frameworks
 
PDF
Medical Device Cyber Testing to Meet FDA Requirements
 
PDF
Threat Modeling and Risk Assessment Webinar.pdf
 
PDF
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
 
PDF
Webinar On-Demand: Using Flutter for Embedded
 
PDF
A Deep Dive into Secure Product Development Frameworks.pdf
 
PDF
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
PDF
Practical Advice for FDA’s 510(k) Requirements.pdf
 
PDF
Accelerating Development of a Safety-Critical Cobot Welding System with Qt/QM...
 
PDF
Overcoming CMake Configuration Issues Webinar
 
PDF
Enhancing Quality and Test in Medical Device Design - Part 2.pdf
 
PDF
Designing and Managing IoT Devices for Rapid Deployment - Webinar.pdf
 
PDF
Quality and Test in Medical Device Design - Part 1.pdf
 
Understanding the EU Cyber Resilience Act
 
Porting Qt 5 QML Modules to Qt 6 Webinar
 
Medical Device Cybersecurity Threat & Risk Scoring
 
Exploring Wayland: A Modern Display Server for the Future
 
Threat Modeling & Risk Assessment Webinar: A Step-by-Step Example
 
8 Mandatory Security Control Categories for Successful Submissions
 
Future-Proofing Embedded Device Capabilities with the Qt 6 Plugin Mechanism.pdf
 
Choosing an Embedded GUI: Comparative Analysis of UI Frameworks
 
Medical Device Cyber Testing to Meet FDA Requirements
 
Threat Modeling and Risk Assessment Webinar.pdf
 
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
 
Webinar On-Demand: Using Flutter for Embedded
 
A Deep Dive into Secure Product Development Frameworks.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Practical Advice for FDA’s 510(k) Requirements.pdf
 
Accelerating Development of a Safety-Critical Cobot Welding System with Qt/QM...
 
Overcoming CMake Configuration Issues Webinar
 
Enhancing Quality and Test in Medical Device Design - Part 2.pdf
 
Designing and Managing IoT Devices for Rapid Deployment - Webinar.pdf
 
Quality and Test in Medical Device Design - Part 1.pdf
 

Recently uploaded (20)

PDF
AI-Powered Fuzz Testing: The Future of QA
PDF
novaPDF Pro 11.9.482 Crack + License Key [Latest 2025]
PDF
Internet Download Manager IDM Crack powerful download accelerator New Version...
PPTX
DevOpsDays Halifax 2025 - Building 10x Organizations Using Modern Productivit...
PDF
PDF-XChange Editor Plus 10.7.0.398.0 Crack Free Download Latest 2025
PDF
Multiverse AI Review 2025: Access All TOP AI Model-Versions!
PPTX
Plex Media Server 1.28.2.6151 With Crac5 2022 Free .
PPTX
Lecture 5 Software Requirement Engineering
PPTX
4Seller: The All-in-One Multi-Channel E-Commerce Management Platform for Glob...
PDF
Cloud Native Aachen Meetup - Aug 21, 2025
PPTX
Cybersecurity: Protecting the Digital World
PPTX
Python is a high-level, interpreted programming language
PPTX
Computer Software - Technology and Livelihood Education
PPTX
Chapter 1 - Transaction Processing and Mgt.pptx
PPTX
Viber For Windows 25.7.1 Crack + Serial Keygen
PDF
How Tridens DevSecOps Ensures Compliance, Security, and Agility
PDF
SOFTWARE ENGINEERING Software Engineering (3rd Edition) by K.K. Aggarwal & Yo...
PPTX
Bista Solutions Advanced Accounting Package
PDF
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
PPTX
R-Studio Crack Free Download 2025 Latest
AI-Powered Fuzz Testing: The Future of QA
novaPDF Pro 11.9.482 Crack + License Key [Latest 2025]
Internet Download Manager IDM Crack powerful download accelerator New Version...
DevOpsDays Halifax 2025 - Building 10x Organizations Using Modern Productivit...
PDF-XChange Editor Plus 10.7.0.398.0 Crack Free Download Latest 2025
Multiverse AI Review 2025: Access All TOP AI Model-Versions!
Plex Media Server 1.28.2.6151 With Crac5 2022 Free .
Lecture 5 Software Requirement Engineering
4Seller: The All-in-One Multi-Channel E-Commerce Management Platform for Glob...
Cloud Native Aachen Meetup - Aug 21, 2025
Cybersecurity: Protecting the Digital World
Python is a high-level, interpreted programming language
Computer Software - Technology and Livelihood Education
Chapter 1 - Transaction Processing and Mgt.pptx
Viber For Windows 25.7.1 Crack + Serial Keygen
How Tridens DevSecOps Ensures Compliance, Security, and Agility
SOFTWARE ENGINEERING Software Engineering (3rd Edition) by K.K. Aggarwal & Yo...
Bista Solutions Advanced Accounting Package
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
R-Studio Crack Free Download 2025 Latest

OpenGL Fixed Function to Shaders - Porting a fixed function application to “modern” OpenGL - Webinar Mar 2016

  • 1. Fixed Function to Shaders Porting a fixed-function application to “modern” Opengl. Watch the video here: http://bit.ly/1TA24fU
  • 2. Outline There are many tutorials that introduce you to “modern” OpenGL: (OpenGL 3.3/OpenGL ES 2.0 or greater which is where the fixed-function APIs were removed from the spec.) Here we will compare and contrast old fixed- functionality and it’s new modern replacement. We will cover some basic things you need to get going: Vertex/Attribute data, rendering, and 3- D math.
  • 3. Geometry Let’s use the famous OpenGL triangle as a platform to talk about geometry/attributes. It’s the probably the very first OpenGL program you saw when learning OpenGL.
  • 4. Rendering What is the minimum need to “light up” a pixel? First you need a window on your platform with an OpenGL context bound to it. You used to use GLUT and GLU “helper” libraries Here we use Qt to replace both. For window/platform integration we’re using QOpenGLWindow initializeGL(), resizeGL(), paintGL(), keyPressEvent()
  • 5. GLUT OpenGL Triangle (clip-space) Show code in Qt Creator.
  • 6. OpenGL 1.1 Vertex Arrays GLUT Triangle Show code in Qt Creator.
  • 7. Modern Open Vertex Arrays Qt Triangle Show code in Qt Creator.
  • 8. Doesn’t Work ?? Previous slide will not render a triangle. Why not? Fixed-function example uses “fixed functionality” to render. With modern OpenGL, you have to program that functionality yourself in the form of “shaders”.
  • 9. Shaders Many kinds of shaders in Modern OpenGL: Vertex Shader Tessellation Control Shader Tessellation Evaluation Shader Geometry Shader Fragment Shader Compute Shader Only two are required.
  • 10. Vertex Shader Program that runs on the GPU. Invoked once for each vertex in primitive shapes drawn. Input: Attribute data from vertex arrays Output: Clip space position of vertex: gl_Position Data to pixel shader: varying variables.
  • 11. Fragment Shader Program run on the GPU once for each fragment (pixel-candidate) displayed on screen. Inputs: varying variables from Vertex Shader Outputs: pixel color: gl_FragColor Pixels are produced by “Rasterization”
  • 13. Program All the shaders are compiled and linked together similar to C++ program. QOpenGLShaderProgram makes it easy Once compiled and linked bind() must be called to make it active.
  • 14. Hold On ... You may notice the fragment shader is assigning the output color directly from it’s input varying v_color variable set by the Vertex Shader. How is it that the colors are “mixed” inside the triangle? Outputs of the vertex shader (and corresponding inputs to the pixel shader) are interpolated between the vertices. Equivalent to glShadeModel(GL_SMOOTH);
  • 15. What about GL_FLAT ? Okay so attribute data output from the vertex shader is interpolated to the pixel shader inputs. What about glShadeModel(GL_FLAT)? Use flat attribute on variable declaration in shader code. flat varying vec3 v_color; Default is smooth. These are equivalent: smooth varying vec3 v_color; varying vec3 v_color;
  • 16. Review: QGLBufferObject Memory buffer on graphics card that holds vertex attribute data. Equivalent to glBegin/glEnd inside a display list Attributes inside glBegin/glEnd copied to video card instead of being rendered. Equivalent to alloc() on QGLBufferObject. Vertex Buffer Objects (VBO) don’t save primitive type. Instead pass as parameter to glDraw() Just like OpenGL 1.1 Vertex Arrays
  • 17. Review: QGLVertexArrayObject OpenGL 1.1 Vertex Arrays require setting up attribute array specifications each time before calling glDraw(). Modern OpenGL captures attribute array specifications once when data is uploaded to card using Vertex Array Objects (VAO). VAO “remembers” vertex array state and applies this state when .bind() is called. Modern code only needs a vao.bind() before glDraw()
  • 18. Another thing to note … Fixed-function primitive types: GL_QUAD, GL_QUAD_STRIP, GL_POLYGON have been removed. You must change your geometry to GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, or GL_TRIANGLE.
  • 19. Math Fixed-function OpenGL had Matrix Stacks built into the API. Used to create concept of a “camera” (GL_MODELVIEW) rendering a world through a window (GL_PROJECTION) that’s painted on your computer screen. Convenience Functions: glLoadIdentity, glTranslate, glRotate, glScale Matrix stack: glMatrixMode, glPushMatrix, glPopmatrix
  • 20. Sorry... Sorry, that’s all gone now. You, the programmer, have to perform all this math. Recall the vertex shader is responsible for outputting the vertices clip-space position by assigning to gl_Position. It is this math that you use in the vertex shader to perform this conversion. On the CPU the typical thing to do is recreate the camera/window idiom with model transform matrices, a view transform matrix, and a projection matrix. Pass the matrices to the shaders as “uniforms”
  • 21. Agnostic Modern OpenGL is agnostic about these idioms. But it does help you by providing matrix math operators in the shader language. You, the programmer, get to decide how to transform your vertex positions to clip space. If you can code it, you can use it.
  • 22. Math Library If you want to use the Model-View-Projection concept in your program you have to perform the math yourself. Qt has a powerful/concise library built-in which supports vectors, matrices, and quaternions. Matrix functions to replace GL & GLU gluPerspective, gluOrtho2D, glFrustum, gluLookAt, glTranslate, glRotate, glScale, etc. Checkout: QVector[2,3,4]D, QQuaterion, QMatrix4x4
  • 23. Move out of Clip space (fixed-function) Show code in Qt Creator.
  • 24. Uniforms A uniform is a OpenGL Shading Language (GLSL) constant parameter. Set in CPU code between glDraw() calls. Constant in the fashion that it has a constant value for all shader invocations originating from glDraw() calls until the value is changed. Use QOpenGLProgram.setUniform() to pass Model, View, Projection matrices to shader code before drawing.
  • 25. Move out of Clip Space (modern GL) Show code in Qt Creator.
  • 26. User Clip Planes Another thing to note is the glClipPlane() has been removed. Perform point/plane equation tests in your pixel shader and use keyword discard (instead of assigning to gl_FragColor) to inform OpenGL that that particular pixel should not be displayed.
  • 27. Managing OpenGL State Another thing to note is that glPushAttrib(), glPopAttrib(), glPushClientAttrib() and glPopClientAttrib() have been removed. You have to manually manage your OpenGL state by either keeping track of it in your C++ program (the preferred method) or by using glGet() to read the current state and then restoring it afterwards.
  • 28. Wrapping Up We were able to cover transitioning from fixed- function Vertex/Attribute data and the built-in Matrix stacks (and associated matrix functionality) to Modern OpenGL. We learned that Modern OpenGL replaced the “fixed” stuff with programmable shaders. We learned about the Vertex and Fragment shaders, what they do and how data flows through them. We learned that using Qt makes is very easy to create cross-platform Modern OpenGL code.
  • 29. For More Information For more information checkout the four-part blog series I wrote covering this topic. www.ics.com/blog/fixed-function-modern-opengl-part-1-4 Also, check out our training class coming up in April out in Silicon Valley www.ics.com/learning/training/state-art-opengl-and-qt-3
  • 30. Outline For the Blog: Journal Entry Style - Introduction: Spent a lot of time in past life on porting complex, scenegraph based, fixed function OpenGL code to Modern Pipeline Code ... - Three Things that spring out to be addressed - Geometry and Lighting and Texturing - Picking, Text is another one for another day - Explain Geometry and Lighting using a simple scene example
  • 31. Simple Scene from <insert link here> Screenshot Code: window/context, geometry, drawing, resize, camera modelview, projection, viewport, light Modern Code: QOpenGLWindow.... Geometry: VertexBuffer, IndexBuffer, VertexArrayObjects, ...
  • 32. GLUT OpenGL Triangle (clip-space) void init(void) { glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void display(void) { glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_TRIANGLES); glColor3f(1.0, 0.0, 0.0); glVertex3f(-1.0, -1.0, 0.0); glColor3f(0.0, 1.0, 0.0); glVertex3f( 0.0, 1.0, 0.0); glColor3f(0.0, 0.0, 1.0); glVertex3f( 1.0, -1.0, 0.0); glEnd(); glutSwapBuffers(); } void reshape(int w, int h) { glViewport(0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); } void keyboard (unsigned char key, int , int ) { if (key == 27) exit(0); }

Editor's Notes

  • #7: in OpenGL 1.1, there was the concept of vertex arrays. Modern OpenGL keeps this concept,