Unit 5: Graphics Pipeline

Disc
LJ

Rasterization

Rasterizations: The process of taking a triangle and figuring out which pixels it covers
  • It is done by the GPU
  • Can be accelerated using some tricks other than ray tracing
  • You can generate multiple fragment in the same pixel
 
notion image

Difference between GP Rasterization and Ray Casting

notion image

Scan conversion

Given a triangle’s vertices, figure out which pixels to turn on: Compute illumination values to fill in pixels within the primitive At each pixel, keep track of the closest primitive (z-buffer) Only overwrite if triangle being drawn is closer than the previous triangle in that pixel
notion image
 

Rasterization Limitation

notion image

Ray Tracing

notion image
 
 

Modern Interactive Graphics Pipeline

  • It’s an organization of all algorithmic operations in one flow
  • Input:
    • Geometric model
      • Triangle vertices, vertex normals, texture coordinates
    • Lighting/material model (shader)
      • Light source positions, colors, intensities, etc.
      • Texture maps, specular/diffuse coefficients, etc.
    • Viewpoint + projection plane
  • Output:
    • Color (+depth) per pixel
 
 
  • Steps (high-level):
    • Project vertices to 2D (image)
    • Rasterize triangle: find which pixels should be lit
      • For each pixel, test 3 edge equations.
        • if all pass, draw pixel (generate fragment)
    • Compute per-pixel color
    • Test visibility (Z-buffer), update frame buffer color
      • Store minimum distance to camera for each pixel in “Z-buffer”
        • ~same as in ray casting!
        if newz < zbuffer[x,y] zbuffer[x,y]=new_z framebuffer[x,y]=new_color
      • We use a technique called double buffering: display one buffer (front buffer) and render the other (back buffer), and swap these going back and forth (this is handled in OpenGL using glfwSwapBuffers function.
      notion image
       
  • Rasterization Pseudocode
For each triangle transform into eye space (perform projection) setup 3 edge equations for each pixel x,y if passes all edge equations compute z if z<zbuffer[x,y] zbuffer[x,y]=z framebuffer[x,y]=shade()
 
 

Projection

  • Triangles geometry is preserved in 2D and 3D
    • It looks like a triangle in both coordinate systems and are kept mapped to triangles
     
     

    Ray Casting vs Rasterization

    notion image