A simple renderer without graphic api like Vulkan, DirectX and OpenGL.
SDL2 for create window and draw point. In linux platform, you can install the package through commands below.
sudo apt-get install libsdl2-dev
You need cmake and c++ compiler. After having those tools. You can run commands below to build this project. Current only test on linux, if you want to build this on windows or other platform, you need change some settings in CMakeLists.txt.
mkdir build
cd build
cmake ..