summaryrefslogtreecommitdiff
path: root/racer-tracer/src/error.rs
AgeCommit message (Collapse)Author
2023-04-05🚮 Cleanup old useless errorsSakarias Johansson
2023-04-05📖 Add logging and term writesSakarias Johansson
println works for a while. Was time to set up something better. Worth to not that there is a big difference between logging and writing to the terminal which is why both slog and console was dragged in. Might seem similar but purpose is not the same. Most of the time the log is interesting during runtime but user messages does not belong in the log.
2023-03-20✨ Add simple way of handling inputs through CBsSakarias Johansson
2023-03-13📸 Add Camera defocus blur + OtherSakarias Johansson
Just wanted to add defocus blur but ended up changing a bunch of other this as well. - Moved scenes to a separate folder. - Updated readme with more pretty images. - Add interface for loading scenes. There is currently one for yaml and another if you want a slightly random scene. - Add image action to decide what to do with the final image once its rendered. Currently supports just showing the buffer until you press the render buffer again and saving the image as `png`. - When you use nix shell you will be dropped in the proper folder so you can just do cargo build etc without having to do `cd`.
2023-03-03✨ Add image save supportSakarias Johansson
Once the render is done it saves an PNG.
2023-03-03🛠 Cleanup error handling & functionalizeSakarias Johansson
2023-01-18🏙️ Add support for reading scene from fileSakarias Johansson
2023-01-17📜 Add config supportSakarias Johansson
2023-01-13✨ Add realtime previewSakarias Johansson
- Preview quality is crude but works good enough. - Add scaling to render function. This helps to make the preview faster because we can use the same result for several pixels. - You can move around the camera a bit with wasd, super basic. - Press R to start/stop rendering the scene.
2023-01-11🔨 Refactors & Use rayonSakarias Johansson
- All data shared between threads are now Arcs since the data is immutable. - Remove tokio - Rustified main
2023-01-05Initial commit 🎉Sakarias Johansson