opengl-test

triangle draw using glfw and opengl
Index Commits Files Refs README LICENSE
README.md (507B)
   1 # OpenGL Test Repository
   2 
   3 Just a simple OpenGL playground to learn about OpenGL programming and GLSL
   4 language.
   5 
   6 For now just draws a triangle but in a future I would like to implement a
   7 [mandelbrot set visualizer](https://github.com/mjkloeckner/mandelbrot)
   8 
   9 Most of the code was developed following [Learn OpenGL](https://learnopengl.com/)
  10 tutorials
  11 
  12 ## Dependencies
  13 
  14 - OpenGL (at least version 3.30)
  15 - Glfw
  16 - Glew
  17 
  18 ## Building and Running
  19 
  20 ```console
  21 $ make -j $(nproc)
  22 $ ./opengl
  23 ```
  24 
  25 ## License
  26 
  27 [MIT]()