openGL学习笔记五: glfw库及使用

  glfw(Graphics Library Framework):是继glut,freeglut之后,当前最新的用来创建OpenGL上下文,以及操作窗口的第三方库。是Freeglut升级版,作用基本一样。

官方网址为:http://www.glfw.org/

安装及使用

环境:win7 VS2013

1. 下载glfw:

地址:https://github.com/glfw/glfw
openGL学习笔记五: glfw库及使用_第1张图片

2. cmake打开生成VS工程:

openGL学习笔记五: glfw库及使用_第2张图片
生成GLFW工程后,选择glfw项目进行编译得到glfw3.lib库文件

3. opengl项目配置:

a. 项目属性 ----> C/C++ —> 附加包含目录 —> your_path\glfw-master\include
b. 项目属性 ----> 链接器 —> 常规 —> 附加库目录 —> your_path\lib
c. 项目属性 ----> 链接器 —> 输入 —> 附加依赖项 —> glfw3.lib

4. 代码:


#include 

int main(void) {
	GLFWwindow* window;

	/* Initialize the library */
	if(!glfwInit())
		return -1;

	/* Create a windowed mode window and its OpenGL context */
	window = glfwCreateWindow(480, 320, "Hello World", NULL, NULL);
	if(!window) {
		glfwTerminate();
		return -1;
	}

	/* Make the window's context current */
	glfwMakeContextCurrent(window);

	/* Loop until the user closes the window */
	while(!glfwWindowShouldClose(window)) {
		/* Draw a triangle */
		glBegin(GL_TRIANGLES);

		glColor3f(1.0, 0.0, 0.0);    // Red
		glVertex3f(0.0, 1.0, 0.0);

		glColor3f(0.0, 1.0, 0.0);    // Green
		glVertex3f(-1.0, -1.0, 0.0);

		glColor3f(0.0, 0.0, 1.0);    // Blue
		glVertex3f(1.0, -1.0, 0.0);

		glEnd();

		/* Swap front and back buffers */
		glfwSwapBuffers(window);

		/* Poll for and process events */
		glfwPollEvents();
	}

	glfwTerminate();
	return 0;
}

5. 运行结果:

openGL学习笔记五: glfw库及使用_第3张图片

你可能感兴趣的:(#,1.7,OpenGL)