32 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
33 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
35 glfwWindowHint(GLFW_SAMPLES, 4);
36 glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);
39 glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
44 GLFWwindow* window = glfwCreateWindow(
SCR_WIDTH,
SCR_HEIGHT,
"LearnOpenGL example in StapleGL",
nullptr,
nullptr);
45 if (window ==
nullptr) {
46 std::cout <<
"Failed to create GLFW window" << std::endl;
50 glfwMakeContextCurrent(window);
55 if (gladLoadGLLoader(
reinterpret_cast<GLADloadproc
>(glfwGetProcAddress)) == 0) {
56 std::cout <<
"Failed to initialize GLAD" << std::endl;
60 glEnable(GL_MULTISAMPLE);
66 std::array<float, 12> vertices = {
73 std::array<unsigned int, 6> indices = {
85 VBO.set_layout(layout);
94 while (glfwWindowShouldClose(window) == 0) {
101 glClearColor(0.2F, 0.3F, 0.3F, 1.0F);
102 glClear(GL_COLOR_BUFFER_BIT);
109 glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT,
nullptr);
115 glfwSwapBuffers(window);