Skip to content

esmitt/GLFW-Basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello Triangle using GLFW

This is a basic template to use GLFW under Windows and Linux. The project was generated using Visual Studio 2017, and DLL libraries to GLFW (instead the static version) and the 32-bit library (instead the 64 bit version), all under Windows 10.

Project contains the basic draw, keyboard, initialize and resize function such as GLUT. Also, contains the definition of GLFW_DLL and the usage in Windows of

#pragma comment

Functions and variables related to GLFW are encapsulated into a namespace called glfwFunc (nothing special about the name).

Linux

To compile in Linux:

g++ main.cpp -o main.o -lGL -lGLU -lglfw3 -lX11 -lXxf86vm -lXrandr -lpthread -lXi

The final render is a colored triangle.

Releases

No releases published

Packages

No packages published