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.

You can see on the video, some triangles on the leg of the dragon are missing, when looked from this angle. This bug was easily missed during the initial development of the KDTree, because most angles don’t suffer from this. Now, I can leave the ray tracer running while I sleep and come back the next morning to inspect if I’ve introduced any regressions the previous day.

Next step is to actually fix the bug :) I’ll post a benchmark of the KDTree once done.