the opengl shading language
play

The OpenGL Shading Language Rahul Arora The Fixed Functionality - PowerPoint PPT Presentation

The OpenGL Shading Language Rahul Arora The Fixed Functionality Rendering Pipeline Object space View space Clip space Screen space Vertex and Transformation Primitive Fragment Depth test, Rasterization index lists and lighting


  1. The OpenGL Shading Language Rahul Arora

  2. The Fixed Functionality Rendering Pipeline Object space View space Clip space Screen space Vertex and Transformation Primitive Fragment Depth test, Rasterization index lists and lighting assembly operations Blending, etc.

  3. The Fixed Functionality Rendering Pipeline Vertex and Transformation Primitive Fragment Depth test, Rasterization index lists and lighting assembly operations Blending, etc. How would you perform Phong shading?

  4. Problems? • Only Phong illumination model supported. • Only a few pre-programmed shading models supported. • Flat shading • Gouraud shading • No per-fragment lighting. • No screen space shading.

  5. The Programmable Pipeline Object space Clip space Screen space Vertex and Primitive Fragment Depth test, Vertex shader Rasterization index lists assembly shader Blending, etc.

  6. Or Use an Entirely Different Illumination Model!

  7. GLSL: The OpenGL Shading Language • C-like programming language. • Both vertex and fragment shaders are written in GLSL. • OpenGL requires certain outputs from the shaders. • But you can add additional ones for doing cool things.

  8. GLSL Qualifiers • uniform • Remains the same throughout the execution of the shader • attribute • Per-vertex data • varying • Per-fragment data • Automatically interpolated by fixed stages of the pipeline Vertex and Primitive Fragment Depth test, Vertex shader Rasterization index lists assembly shader Blending, etc.

  9. GLSL: Data types • Scalars float, int, bool • Vectors Float: vec2, vec3, vec4 Integer: ivec[2|3|4] Boolean: bvec[2|3|4] Accessing data : vert[0], vert.x, vert.r, vert.xyz, vert.rgba • Matrices Floating point: mat2, mat3, mat4 • Textures sampler1D, sampler2D, sampler3D Accessing data: texture(u, v)

  10. GLSL: Built-in Functions • Trigonometric cos, sin, tan , etc. • Exponentiation exp, log, sqrt , etc. • Common floating-point abs, floor, min, clamp , etc. • Geometric length, dot, cross, normalize, reflect , etc.

  11. Built-in Inputs and Outputs Vertex Shader Fragment Shader Input: _________ Input: gl_FragCoord (vec4) Output: gl_Position (vec4) Output: gl_FragColor (vec4)

  12. Recall the Phong Illumination Model shininess Ambient term Diffuse term Specular term

  13. Example // Vertex Shader // Fragment Shader attribute highp vec4 vertex; uniform vec3 ambientColor; uniform mediump mat4 modelview; uniform mediump mat4 projection; void main() { void main() gl_FragColor = { vec4(ambientColor, 1); gl_Position = } projection * modelview * vertex; }

  14. Example // Vertex Shader // Fragment Shader attribute highp vec4 vertex; uniform vec3 ambientColor; uniform mediump mat4 modelview; uniform vec3 diffuseColor; uniform mediump mat4 projection; varying vec3 normalInterp; varying vec3 normalInterp; uniform vec3 lightPos; void main() void main() { { gl_Position = // normalize normalInterp first projection * modelview * vertex; vec3 N = <your_code>; normalInterp = <your_code>; // get light direction } vec3 L = <your_code>; float lambertian = <your_code>; gl_FragColor = vec4(ambientColor + lambertian * diffuseColor, 1); }

  15. Example // Vertex Shader // Fragment Shader attribute highp vec4 vertex; ... uniform mediump mat4 modelview; uniform vec3 specularColor; uniform mediump mat4 projection; uniform float shininess; varying vec3 normalInterp; void main() void main() { { // find N, L, lambertian gl_Position = ... projection * modelview * vertex; // use lambertian and shininess to find normalInterp = <your_code>; // specular intensity } float specular = <your_code>; gl_FragColor = vec4(ambientColor + lambertian * diffuseColor + specular * specularColor, 1); }

  16. Questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend