Library that makes Modern openGL easy to use.
- c++11 compiler
- soil
- glfw
- glew
- glm
Open terminal in linux and follow commands
- clone the library in your working directory
git clone https://github.com/vikasgola/EaseOpenGL
- include easeopengl.h in your program
#include "easeopengl.h"
// include easeopengl
#include "easeopengl.hpp"
#include<iostream>
using namespace std;
using namespace easeopengl;
int main(int argc, char const *argv[]){
easeInit(3);
EaseWindow3D/EaseWindow2D window(800,600, "Hello Window");
window.use();
while(window.isOpen()){
window.checkEvents();
window.swapBuffers();
}
easeEnd();
return 0;
}
Coming soon!!!