Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 695 Bytes

File metadata and controls

37 lines (28 loc) · 695 Bytes

Black Hole Simulation

Black Hole Simulation using SDL3 GPU with a compute shader

Building

Windows

git clone https://github.com/jsoulier/black_hole_simulation --recurse-submodules
cd black_hole_simulation
mkdir build
cd build
cmake ..
cmake --build . --parallel 8 --config Release
cd bin
./black_hole_simulation.exe

Linux

git clone https://github.com/jsoulier/black_hole_simulation --recurse-submodules
cd black_hole_simulation
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --parallel 8
cd bin
./black_hole_simulation

References