OkeWoke / Raytracer

I got bored and wanted to make my own raytracer in C++
0 stars 0 forks source link

Live Display of image samples converging #6

Closed OkeWoke closed 4 years ago

OkeWoke commented 4 years ago

Instead of waiting for full image to be rendered before display, show whole image as each pixel is modified. (This may require a copy image for display purposes). Currently iterate over all samples for a given pixel. Should iterate over all samples, then iterate over all pixels. Master image that contains the current sum of values.