Learning 3D Graphics From Scratch

Learning 3D Graphics From Scratch
I'm starting a new blog series based on my fascination with 3D graphics rendering.The very first game I built used DirectX, and throughout my career, I've only used graphics APIs (DirectX and OpenGL)....
0 Read More

3D Renderer in C - Project Setup

3D Renderer in C - Project Setup
Although this is probably not an interesting topic to start with, I want to write about the setup of the project for our 3D renderer from scratch. Don't worry, this does not constitute as this week's ...
0 Read More

3D Renderer in C - Create a Window

3D Renderer in C - Create a Window
Welcome to the next article in my 3D graphics programming from scratch series. Previously, we set up the project to call SDL_Init and make sure our include and library directories are found successful...
0 Read More

3D Renderer in C - Update to SDL3

Welcome to another entry to the 3D renderer series. Today I'm documenting my switch from SDL2 to SDL3. We'll tackle this first on Windows, then macOS and Linux. Let's get to it. Installation ...
0 Read More