Visual Studio Tricks I Wish I Knew From the Start

Debugging Perfect Forwarders in Visual Studio IDE Visual Studio tends to give really bad error messages for perfect forwarders. For example, if I give the wrong arguments to std::vector’s emplace_back, I will get sent to a line in xmemory.h, and not the the line of code I wrote. Previously, I debugged this by deliberately raising a warning every time I used a perfect forwarder, so I can easily go back and correct the line if needed....

August 24, 2024 · 170 words · Danny Grigorov

Comparison Feature for Sanctuary Raytracer

Comparison Feature for Sanctuary Raytracer I am currently fixing a bug with the KDTree implementation in my raytracer, which makes some triangles disappear under certain angles. I like these hard to spot bugs to stay fixed, so I decided to automate the process of finding them and inspecting them. When run in “comparison” mode, “Sanctuary” compares its output with a known good render, residing in a “compare” folder. If a known good render of the scene exists, the images are compared and an image diff is generated....

August 19, 2024 · 180 words · Danny Grigorov
sanctuary ray tracer cover

How I started with Computer Graphics

My Entry into Ray Tracing: “Sanctuary” I embarked on my ray tracing journey with the creation of the “Sanctuary” raytracer, a project born out of the Chaos Camp ray tracing course. Here’s a video showcasing what “Sanctuary” can do: Watch the video Looking ahead to 2024, the plan is to accelerate “Sanctuary” with CUDA, introduce a graphical interface (as of now, it outputs directly to a .png file), and add some rasterization capabilities....

August 1, 2024 · 73 words · Danny Grigorov