StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
sandbox.cpp
Go to the documentation of this file.
1
12#include "glad.h"
13#include "staplegl.hpp"
14#include <GLFW/glfw3.h>
15#include <array>
16#include <iostream>
17#include <span>
18#include <utility>
19
20void framebuffer_size_callback(GLFWwindow* window, int width, int height);
21void processInput(GLFWwindow* window);
22
23// initial window size
24const int32_t SCR_WIDTH = 1600;
25const int32_t SCR_HEIGHT = 900;
26
27auto main() -> int
28{
29 // glfw: initialize and configure
30 // ------------------------------
31 glfwInit();
32 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
33 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
34
35 glfwWindowHint(GLFW_SAMPLES, 4); // MSAA
36 glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);
37
38#ifdef __APPLE__
39 glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
40#endif
41
42 // glfw window creation
43 // --------------------
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;
47 glfwTerminate();
48 return -1;
49 }
50 glfwMakeContextCurrent(window);
51 glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
52
53 // glad: load all OpenGL function pointers
54 // ---------------------------------------
55 if (gladLoadGLLoader(reinterpret_cast<GLADloadproc>(glfwGetProcAddress)) == 0) { // NOLINT (reinterpret-cast)
56 std::cout << "Failed to initialize GLAD" << std::endl;
57 return -1;
58 }
59
60 glEnable(GL_MULTISAMPLE); // MSAA
61
62 staplegl::shader_program const basic { "basic_shader", "./shaders/basic_shader.glsl" };
63
64 // set up vertex data (and buffer(s)) and configure vertex attributes
65 // ------------------------------------------------------------------
66 std::array<float, 12> vertices = {
67 0.5F, 0.5F, 0.0F, // top right
68 0.5F, -0.5F, 0.0F, // bottom right
69 -0.5F, -0.5F, 0.0F, // bottom left
70 -0.5F, 0.5F, 0.0F // top left
71 };
72
73 std::array<unsigned int, 6> indices = {
74 0, 1, 3, // first Triangle
75 1, 2, 3 // second Triangle
76 };
77
79 staplegl::index_buffer EBO { indices };
80
81 using namespace staplegl::shader_data_type;
82
83 staplegl::vertex_buffer_layout const layout { { u_type::vec3, "aPos" } };
84
85 VBO.set_layout(layout);
86
88
89 VAO.add_vertex_buffer(std::move(VBO));
90 VAO.set_index_buffer(std::move(EBO));
91
92 basic.bind();
93
94 while (glfwWindowShouldClose(window) == 0) {
95 // input
96 // -----
97 processInput(window);
98
99 // render
100 // ------
101 glClearColor(0.2F, 0.3F, 0.3F, 1.0F);
102 glClear(GL_COLOR_BUFFER_BIT);
103
104 // draw our first triangle
105 VAO.bind(); // seeing as we only have a single VAO there's
106 // no need to bind it every time, but we'll do
107 // so to keep things a bit more organized
108 // glDrawArrays(GL_TRIANGLES, 0, 6);
109 glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, nullptr);
110 // glBindVertexArray(0); // no need to unbind it every time
111
112 // glfw: swap buffers and poll IO events (keys pressed/released, mouse moved
113 // etc.)
114 // -------------------------------------------------------------------------------
115 glfwSwapBuffers(window);
116 glfwPollEvents();
117 }
118
119 // optional: de-allocate all resources once they've outlived their purpose:
120 // ------------------------------------------------------------------------
121
122 // glfw: terminate, clearing all previously allocated GLFW resources.
123 // ------------------------------------------------------------------
124 glfwTerminate();
125 return 0;
126}
127
128// process all input: query GLFW whether relevant keys are pressed/released this
129// frame and react accordingly
130// ---------------------------------------------------------------------------------------------------------
131void processInput(GLFWwindow* window)
132{
133 if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) {
134 glfwSetWindowShouldClose(window, 1);
135 }
136}
137
138// glfw: whenever the window size changed (by OS or user resize) this callback
139// function executes
140// ---------------------------------------------------------------------------------------------
141void framebuffer_size_callback(GLFWwindow* /*window*/, int width, int height)
142{
143 // make sure the viewport matches the new window dimensions; note that width
144 // and height will be significantly larger than specified on retina displays.
145 glViewport(0, 0, width, height);
146}
const int32_t SCR_WIDTH
Definition batches.cpp:67
void processInput(GLFWwindow *window)
Definition batches.cpp:239
void framebuffer_size_callback(GLFWwindow *window, int width, int height)
Definition batches.cpp:246
auto main() -> int
Definition batches.cpp:70
const int32_t SCR_HEIGHT
Definition batches.cpp:68
Element Buffer Object (EBO) wrapper.
Shader program class.
Definition shader.hpp:77
Vertex Array Object (VAO) wrapper.
void bind() const
Bind the vertex array object.
void set_index_buffer(index_buffer &&ibo)
Set the index buffer object.
auto add_vertex_buffer(vertex_buffer &&vbo) -> vertex_array::iterator_t
Add a vertex buffer to the vertex array object.
Vertex Buffer Object (VBO) wrapper.
StapleGL, a C++20 wrapper for OpenGL.