August 2015
Beginner to intermediate
298 pages
5h 49m
English
Now that you have successfully configured your development platform and installed the GLFW library, we will provide a tutorial on how to create your first OpenGL-based application.
At this point, you should already have all the pre requisite tools ready regardless of which operating system you may have, so we will immediately jump into building your first OpenGL application using these tools.
The following code outlines the basic steps to create a simple OpenGL program that utilizes the GLFW library and draws a rotating triangle:
#include <GLFW/glfw3.h> #include <stdlib.h> ...
Read now
Unlock full access