Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 518 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 518 Bytes

CPU Garden

The goal is to create very simple software renderer, so I could use it for fun projecs, such as experiment with 10...0 particles, or implement Game Of Life, or create arcade racing game, whatever.

I am going to make everything from scratch, completely independent of any libraries, for Windows, Linux and macOS.

Work In Progress!

Building

macOS

mkdir build
cd build
cmake ..
make
./garden

Linux

You might need to install X11 first: sudo apt-get install libx11-dev