#include #include #include #include "shader.h" #include "die.h" #include "hello_vert.h" #include "hello_frag.h" void prepare_tri() { const float vertices[] = { -1, -1, 0, 3, -1, 0, -1, 3, 0, }; // initialize vertex {buffer,attribute} object buffers GLuint VBO, VAO; glGenBuffers(1, &VBO); glBindBuffer(GL_ARRAY_BUFFER, VBO); glGenVertexArrays(1, &VAO); glBindVertexArray(VAO); // copy vertex data into VBO glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); // set VAO pointers glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0); glEnableVertexAttribArray(0); // draw (only) this triangle glBindBuffer(GL_ARRAY_BUFFER, 0); glBindVertexArray(VAO); } int main(int argc, char** argv) { glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // force floating window w/ i3 glfwWindowHint(GLFW_FLOATING, GL_TRUE); glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE); // initialize window GLFWwindow* window = glfwCreateWindow(800, 600, "vis", NULL, NULL); if (window == NULL) die("error: could not create window\n"); glfwMakeContextCurrent(window); // initialize GLEW glewInit(); // create single triangle prepare_tri(); // prepare shaders GLuint shader = link_shaders( vert_shader(hello_vert, hello_vert_size), frag_shader(hello_frag, hello_frag_size) ); // main draw loop while (!glfwWindowShouldClose(window)) { glfwPollEvents(); glUseProgram(shader); glDrawArrays(GL_TRIANGLES, 0, 3); glfwSwapBuffers(window); } return EXIT_SUCCESS; }