Jaime Borondo

Video Game Engine / Generalist Programmer

Experienced Unity and C++ Video Game Developer, always open to interesting offers.

PHYSICALLY BASED RENDERER

 

The purpose of this project was to create a renderer capable of showcasing the image quality that can be achieved using modern rendering techniques. I developed it mostly from scratch, over the course of a semester. In its development I used a couple of external tools mainly for loading meshes and textures into the application.

Languages:

  • OpenGL 4.4
  • C++

Features:

  • Deferred Shading
    • Set up a GBuffer consisting of Position, Normals, Diffuse Color, Specular Color, Ambient Color and Depth buffers.
  • Exponential Dual-Paraboloid Shadow mapping
    • Used two shadow maps to cover the entire sphere of influence of a point light instead of the usual six.
  • Image-Based Lighting
  • Physically based rendering using BRDFs
  • HDR tonemapping
  • Ambient Occlusion implemented from this paper
  • Real-Time Caustic refractions from this paper

Libraries used:

  • TinyObj ( a small but powerfully featured .obj file loader )
  • stb_image ( part of Sean Barrett's  public domain C/C++ libraries )