1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// Copyright (C) 2021 Emilio J. Padrón
// Released as Free Software under the X11 License
// https://spdx.org/licenses/X11.html
//
// Strongly inspired by spinnycube.cpp in OpenGL Superbible
// https://github.com/openglsuperbible
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <stdio.h>
// GLM library to deal with matrix operations
#include <glm/glm.hpp>
#include <glm/mat4x4.hpp> // glm::mat4
#include <glm/gtc/matrix_transform.hpp> // glm::translate, glm::rotate, glm::perspective
#include <glm/gtc/type_ptr.hpp>
int gl_width = 640;
int gl_height = 480;
void glfw_window_size_callback(GLFWwindow* window, int width, int height);
void processInput(GLFWwindow *window);
void render(double);
GLuint shader_program = 0; // shader program to set render pipeline
GLuint vao = 0; // Vertext Array Object to set input data
GLint mv_location, proj_location; // Uniforms for transformation matrices
int main() {
// start GL context and O/S window using the GLFW helper library
if (!glfwInit()) {
fprintf(stderr, "ERROR: could not start GLFW3\n");
return 1;
}
// glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
// glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
// glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
// glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
GLFWwindow* window = glfwCreateWindow(gl_width, gl_height, "My spinning cube", NULL, NULL);
if (!window) {
fprintf(stderr, "ERROR: could not open window with GLFW3\n");
glfwTerminate();
return 1;
}
glfwSetWindowSizeCallback(window, glfw_window_size_callback);
glfwMakeContextCurrent(window);
// start GLEW extension handler
// glewExperimental = GL_TRUE;
glewInit();
// get version info
const GLubyte* vendor = glGetString(GL_VENDOR); // get vendor string
const GLubyte* renderer = glGetString(GL_RENDERER); // get renderer string
const GLubyte* glversion = glGetString(GL_VERSION); // version as a string
const GLubyte* glslversion = glGetString(GL_SHADING_LANGUAGE_VERSION); // version as a string
printf("Vendor: %s\n", vendor);
printf("Renderer: %s\n", renderer);
printf("OpenGL version supported %s\n", glversion);
printf("GLSL version supported %s\n", glslversion);
printf("Starting viewport: (width: %d, height: %d)\n", gl_width, gl_height);
// Enable Depth test: only draw onto a pixel if fragment closer to viewer
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LESS); // set a smaller value as "closer"
// Vertex Shader
const char* vertex_shader =
"#version 130\n"
"in vec4 v_pos;"
"out vec4 vs_color;"
"uniform mat4 mv_matrix;"
"uniform mat4 proj_matrix;"
"void main() {"
" gl_Position = proj_matrix * mv_matrix * v_pos;"
" vs_color = v_pos * 2.0 + vec4(0.4, 0.4, 0.4, 0.0);"
"}";
// Fragment Shader
const char* fragment_shader =
"#version 130\n"
"out vec4 frag_col;"
"in vec4 vs_color;"
"void main() {"
" frag_col = vs_color;"
"}";
// Shaders compilation
GLuint vs = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vs, 1, &vertex_shader, NULL);
glCompileShader(vs);
GLuint fs = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fs, 1, &fragment_shader, NULL);
glCompileShader(fs);
// Create program, attach shaders to it and link it
shader_program = glCreateProgram();
glAttachShader(shader_program, fs);
glAttachShader(shader_program, vs);
glLinkProgram(shader_program);
// Release shader objects
glDeleteShader(vs);
glDeleteShader(fs);
// Vertex Array Object
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
// Cube to be rendered
//
// 0 3
// 7 4 <-- top-right-near
// bottom
// left
// far ---> 1 2
// 6 5
//
const GLfloat vertex_positions[] = {
-0.25f, -0.25f, -0.25f, // 1
-0.25f, 0.25f, -0.25f, // 0
0.25f, -0.25f, -0.25f, // 2
0.25f, 0.25f, -0.25f, // 3
0.25f, -0.25f, -0.25f, // 2
-0.25f, 0.25f, -0.25f, // 0
0.25f, -0.25f, -0.25f, // 2
0.25f, 0.25f, -0.25f, // 3
0.25f, -0.25f, 0.25f, // 5
0.25f, 0.25f, 0.25f, // 4
0.25f, -0.25f, 0.25f, // 5
0.25f, 0.25f, -0.25f, // 3
0.25f, -0.25f, 0.25f, // 5
0.25f, 0.25f, 0.25f, // 4
-0.25f, -0.25f, 0.25f, // 6
-0.25f, 0.25f, 0.25f, // 7
-0.25f, -0.25f, 0.25f, // 6
0.25f, 0.25f, 0.25f, // 4
-0.25f, -0.25f, 0.25f, // 6
-0.25f, 0.25f, 0.25f, // 7
-0.25f, -0.25f, -0.25f, // 1
-0.25f, 0.25f, -0.25f, // 0
-0.25f, -0.25f, -0.25f, // 1
-0.25f, 0.25f, 0.25f, // 7
0.25f, -0.25f, -0.25f, // 2
0.25f, -0.25f, 0.25f, // 5
-0.25f, -0.25f, -0.25f, // 1
-0.25f, -0.25f, 0.25f, // 6
-0.25f, -0.25f, -0.25f, // 1
0.25f, -0.25f, 0.25f, // 5
0.25f, 0.25f, 0.25f, // 4
0.25f, 0.25f, -0.25f, // 3
-0.25f, 0.25f, 0.25f, // 7
-0.25f, 0.25f, -0.25f, // 0
-0.25f, 0.25f, 0.25f, // 7
0.25f, 0.25f, -0.25f // 3
};
// Vertex Buffer Object (for vertex coordinates)
GLuint vbo = 0;
glGenBuffers(1, &vbo);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertex_positions), vertex_positions, GL_STATIC_DRAW);
// Vertex attributes
// 0: vertex position (x, y, z)
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 0, NULL);
glEnableVertexAttribArray(0);
// Unbind vbo (it was conveniently registered by VertexAttribPointer)
glBindBuffer(GL_ARRAY_BUFFER, 0);
// Unbind vao
glBindVertexArray(0);
// Uniforms
// - Model-View matrix
// - Projection matrix
mv_location = glGetUniformLocation(shader_program, "mv_matrix");
proj_location = glGetUniformLocation(shader_program, "proj_matrix");
// Render loop
while(!glfwWindowShouldClose(window)) {
processInput(window);
render(glfwGetTime());
glfwSwapBuffers(window);
glfwPollEvents();
}
glfwTerminate();
return 0;
}
void render(double currentTime) {
float f = (float)currentTime * 0.3f;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glViewport(0, 0, gl_width, gl_height);
glUseProgram(shader_program);
glBindVertexArray(vao);
glm::mat4 mv_matrix, proj_matrix;
mv_matrix = glm::translate(glm::mat4(1.f), glm::vec3(0.0f, 0.0f, -4.0f));
mv_matrix = glm::translate(mv_matrix,
glm::vec3(sinf(2.1f * f) * 0.5f,
cosf(1.7f * f) * 0.5f,
sinf(1.3f * f) * cosf(1.5f * f) * 2.0f));
mv_matrix = glm::rotate(mv_matrix,
glm::radians((float)currentTime * 45.0f),
glm::vec3(0.0f, 1.0f, 0.0f));
mv_matrix = glm::rotate(mv_matrix,
glm::radians((float)currentTime * 81.0f),
glm::vec3(1.0f, 0.0f, 0.0f));
glUniformMatrix4fv(mv_location, 1, GL_FALSE, glm::value_ptr(mv_matrix));
proj_matrix = glm::perspective(glm::radians(50.0f),
(float) gl_width / (float) gl_height,
0.1f, 1000.0f);
glUniformMatrix4fv(proj_location, 1, GL_FALSE, glm::value_ptr(proj_matrix));
glDrawArrays(GL_TRIANGLES, 0, 36);
}
void processInput(GLFWwindow *window) {
if(glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)
glfwSetWindowShouldClose(window, 1);
}
// Callback function to track window size and update viewport
void glfw_window_size_callback(GLFWwindow* window, int width, int height) {
gl_width = width;
gl_height = height;
printf("New viewport: (width: %d, height: %d)\n", width, height);
}