Graphics Programming

My goal for 2025 is to learn OpenGL and build my own 3D renderer to gain a deeper understanding of how graphics work at a low level. I want to explore shaders, rendering pipelines, and real-time graphics techniques to improve my knowledge of computer graphics and game engines. By developing my own rendering system, I aim to strengthen my skills in C++, mathematics for graphics, and optimization techniques, bridging the gap between software and hardware in game development.

Vertex and index buffers

I have a solid understanding of Vertex Buffers and Index Buffers in OpenGL, and how they’re used to efficiently manage and render 3D geometry. I know how to set up and bind these buffers to the GPU to minimize redundancy and improve performance, allowing for smooth and optimized rendering pipelines.

GLSL shading

I have a good understanding of GLSL (OpenGL Shading Language) and how it’s used to write custom vertex and fragment shaders. I’ve worked with GLSL to control the graphics pipeline, manipulate vertices, apply lighting models, and create visual effects, giving me hands-on experience with programmable rendering in OpenGL.

Phong Lighting

I developed a custom shader to render a fully red-colored sphere.

Building on that, I implemented the Phong lighting model to simulate realistic lighting by combining ambient, diffuse, and specular components. This resulted in a smoothly shaded and visually appealing sphere.

To explore different visual styles, I later modified the shader to experiment with cel shading, achieving a more stylized, cartoon-like effect.