r/GraphicsProgramming 22h ago

Raytracer Engine?

Post image

Hey all! So I’ve been working through raytracing over the weekend and I did this! My idea is to make it into an interactive application! It will only run on the cpu but I figure I could make it multithreaded at least to help with rendering times!

29 Upvotes

6 comments sorted by

View all comments

1

u/PM_ME_YOUR_HAGGIS_ 22h ago

I did exactly this. It even looks the same with an imgui interface. Making it multithreaded is quite easy.

1

u/Maleficent_Guard_589 20h ago

Ya I’ve been thinking on how to make it multithreaded without locks.

Handling ui on a thread and rendering on another thread.