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