Unit 3: Color and Blending

Disc
LJ

Lighting and Material (Theory)

  • To have a realistic rendering, we need these inputs
    • Geometry
    • Lighting
    • Materials
  • Material appearance parameters
    • Intensity and shape of highlights
    • Glossiness
    • Color
    • Spatial variation (i.e. Texture)
  • Light sources
    • For multiple light sources, use linearity
      • We can add the solutions for two light sources
      • We simply multiply the solution when we scale the light intensity
      • notion image
    • Light intensity can be represented as function of distance
    • notion image
 

Types of Lights

Incoming Irradiance for Pointlights

notion image
 

Directional Lights

  • A.K.A. Point lights that are infinitely far (like in real world)
notion image
 

Splotlights

notion image
  • Spoltlight Geometry
notion image
 
 

Quantifying Reflection - BRDF

  • Bidirectional Reflectance Distribution Function
  • A function for measuring the reflection
  • Ratio of light coming from one direction that gets reflected in another direction
notion image
notion image
notion image
 

Types of Materials

  • When keeping l and v fixed, if rotation of surface around the normal does not change the reflection, the material is called isotropic
  • Surfaces with strongly oriented microgeometry elements are anisotropic
 
 
notion image
 
 
 

Shaders in OpenGL

  • Shaders are programs that run on GPU
  • Vertex shader:
    • Receives vertices coordinates and attributes (like vertex colors)
    • Sets the positions of the vertex on screens
    • Passes the other attributes (like vertex colors) to the fragment shader
  • Fragment shader outputs colors
  • This is the data structure of vertex (coordinates and colors info)
    • Vertex Attribute Pointer scans the vertex array (VAO) and extract vertices attributes based on offset and stride info.
notion image
  • Uniforms: universal variables that can be accessed by other shaders and the main function of the program w/o using the VAO
    • It is used to adjust the shader by passing values (e.g. to scale up shapes)
    • It is declared inside the shader source code and can be accessed from the program using glGetUniformLocation function that get the reference to it
    • Then, we can set the uniform value using glUniform function (there are variations for this function based on the uniform data type)
 

Textures in OpenGL

2D Textures

  • A library called stb is used for importing textures
  • Square pictures in powers of 2 are more optimzed than pictures with sizes of random number
notion image
  • 2:00
 

Resources