commit 76ebcba9fb520f03be5cdf069bcee011c0f1be4a parent 5a042628ae2bc2d756d79631e23ddd54ede5d555 Author: mjkloeckner <martin.cachari@gmail.com> Date: Thu, 29 Dec 2022 02:13:37 -0300 added README.md Diffstat:
A | README.md | | | 20 | ++++++++++++++++++++ |
1 file changed, 20 insertions(+), 0 deletions(-) diff --git a/README.md b/README.md @@ -0,0 +1,20 @@ +# OpenGL Test Repository + +Just a simple OpenGL playground to learn about OpenGL programming and GLSL +language. + +For now just draws a triangle but in a future I would like to implement a +[mandelbrot set visualizer](https://github.com/mjkloeckner/mandelbrot) + +## Dependencies + +- OpenGL (at least version 3.30) +- Glfw +- Glew + +## Building and Running + +```console +$ make -j $(nproc) +$ ./opengl +```