Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 972 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 972 Bytes

kaleidoscope

Compiling For Release

conan install . --output-folder=build --build=missing
cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=Release
cmake --build build

Compiling For Debug

conan install . --output-folder=build --build=missing --profile=debug
cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=Debug
cmake --build build

Compiling

Or you can just use setup.sh

Overview

This will be the successor of Fractal Renderer (https://github.com/hdombach/Fractal-Renderer/tree/main). The goal is to include more tools like the ability to load textures and meshes instead of just using SDF's and procedural textures.

Currently, I'm still building up framework based on the vulkan tutorial. I just got a viewport working correctly in ImGui. Screenshot 2023-06-15 at 2 18 58 PM